UIAlertView 띄우는 법
UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@""
message:@"가라미네이트 형"
delegate:self
cancelButtonTitle:@"취소" /* nil 로 지정할 경우 cancel button 없음 */
otherButtonTitles:@"확인", nil];
[alert show];
'언어 > Objective - C' 카테고리의 다른 글
참고 사이트 (0) | 2017.08.16 |
---|---|
duplicate symbols for architecture arm64 (0) | 2017.08.10 |
kapps 아이폰,안드 전문 사이트 (0) | 2017.07.23 |
[Error] cannot be opened because the project file cannot be parsed. (0) | 2017.07.13 |
프레임워크 CPU별 빌드 확인하기(iPhone5에서는 빌드 안 되고, iPhone6에서는 빌드 되는 현상) (0) | 2017.06.28 |