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
- 문자열
- 시리얼 통신
- 인스톨
- 설치
- xml
- 기초
- Visual Studio 2005
- 소니
- Delphi
- 예제
- VB.NET
- 입문
- 셋업
- 델파이
- PostgreSQL
- 파이어버드
- 데이터베이스
- Visual Basic
- MySQL
- Firebird
- SDK
- 파라미터
- winsock
- 초보
- MFC
- vb
- c#
- dll
- WIN32 SDK
- SQL
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