iOS8에서 이 코드가 동작하지 않는다고 하여, 테스트차 돌려봤는데
문제없다.
왜 안되는지 ..
1. 버튼 생성 코드
// 버튼 생성
UIButton* button = [UIButton buttonWithType:UIButtonTypeSystem];
// 버튼 크기 및 위치
button.frame = CGRectMake(100, 100, 100, 100);
// 버튼 글씨
[button setTitle:@"버튼" forState:UIControlStateNormal];
// 버튼을 눌렀을 때 동작하는 함수 추가
[button addTarget:self action:@selector(buttonClick) forControlEvents:UIControlEventTouchUpInside];
// 버튼을 현재화면에 추가
[self.view addSubview:button];
2. 버튼 눌렀을때 동작하는 함수
- (void) buttonClick
{
NSLog(@"button click");
}
'프로그래밍 > iOS' 카테고리의 다른 글
[ios] AVCaptureSession Zoom (0) | 2015.04.09 |
---|---|
[ios] simulator용 라이브러리와 device용 라이브러리 합치기, lipo (0) | 2015.04.09 |
[ios] UIAlertView rotate, UIAlertController (0) | 2015.04.09 |
[ios] 버전 가져오기 (0) | 2015.04.09 |
[ios] -ObjC (other linker flag) (0) | 2015.04.09 |