반응형
iOS8 이전 버전에서 정상이던 AlertView가 iOS8 에서 텍스트가 상단으로 붙어보이는 문제 발생.
아래와 같이 간단히 해결. ^^
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:nil message:@"테스트입니다." delegate: nilcancelButtonTitle:@"확인" otherButtonTitles:nil];
[alertView show];
-->
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"" message:@"테스트입니다." delegate: nilcancelButtonTitle:@"확인" otherButtonTitles:nil];
[alertView show];
반응형
'Scrapbook > 개발 및 프로그래밍' 카테고리의 다른 글
iis7 64bit 에서 32bit 응용프로그램 사용시 html asp 매핑 사용하기 (0) | 2015.06.16 |
---|---|
톰캣 서버 메이븐에서 호출하기 (0) | 2015.01.15 |
[iOS] Xcode5, AppIcon Gloss effects/반사광 제거 (0) | 2013.12.12 |
[iOS] iPhone의 진정한 url 인코딩(objective-c) (0) | 2013.12.10 |
[iOS] NSNotificationCenter 사용법 (0) | 2013.12.05 |