반응형 Developer217 IOS 7 textview contentsize offset : textview contentsize 스크롤 IOS7이 되고 나서 텍스트 뷰에서 글 작성 할때 키보드로 글이 내려가 버리는 현상 발견 .. ~ ㅠㅠ - (void)textViewDidChange:(UITextView *)textView { CGRect line = [textView caretRectForPosition: textView.selectedTextRange.start]; CGFloat overflow = line.origin.y + line.size.height - ( textView.contentOffset.y + textView.bounds.size.height - textView.contentInset.bottom - textView.contentInset.top ); if ( overflow > 0 ) { // We are at .. 2013. 11. 4. 자동 잠금,Auto Lock 제어 자동 잠김 해제 ...- (void)applicationDidFinishLaunching:(UIApplication *)application { ... [UIApplication sharedApplication].idleTimerDisabled = YES; ... } 2013. 9. 17. [IOS] IOS7 UInavigationBar ///////ios7 statusbar patch/////////////// float sysVer = [[[UIDevice currentDevice] systemVersion] floatValue]; if (sysVer >= 7) { self.edgesForExtendedLayout = UIRectEdgeNone; } ////////////////////////////////////////// http://leo81.tistory.com/15 이분 블로그가 잘 설명 되어 짐. .~ !! 2013. 9. 12. 버전정보 읽어오기 appVer.text = [NSString stringWithFormat:@"Ver %@",[[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleVersion"]]; 2013. 9. 6. 이전 1 ··· 36 37 38 39 40 41 42 ··· 55 다음 반응형