IOS7でUITextViewの高さを調整するサンプルプログラム

コード下記:
if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7) {

CGRect textFrame=[[self.textView layoutManager]usedRectForTextContainer:[self.textView textContainer]];
height = textFrame.size.height;

}else {

height = self.textView.contentSize.height;
}

CGRectは対象オブジェクトの位置とサイズの両方を管理するクラスです。

IOS

Posted by arkgame