Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- SDK
- 문자열
- WIN32 SDK
- 셋업
- winsock
- 델파이
- c#
- PostgreSQL
- 파이어버드
- Visual Studio 2005
- 입문
- vb
- MySQL
- 소니
- Firebird
- dll
- 인스톨
- Delphi
- 시리얼 통신
- 설치
- VB.NET
- 초보
- MFC
- SQL
- xml
- Visual Basic
- 데이터베이스
- 기초
- 예제
- 파라미터
Archives
- Today
- Total
목록이벤트 (1)
프로그래밍 노트
[Xcode] 간단한 버튼 만들기
버튼을 눌렀을 때와 뗐을 때 라벨의 내용을 변경//// ViewController.m// ButtonTest// #import "ViewController.h" @interface ViewController () @end @implementation ViewController{ UILabel *lb; UIButton *bt;} - (void)viewDidLoad{ [super viewDidLoad];// Do any additional setup after loading the view, typically from a nib. lb = [[UILabel alloc] init]; lb.text = @"버튼 테스트"; [lb sizeToFit]; bt = [UIButton buttonWithType:UIBu..
Xcode
2013. 9. 11. 01:42