Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
NavigationViewControllerをブロックするScrollView
たぶん、現在のビューのフレームを設定してみることができます..例:
CGRect r = self.view.frame; self.view.frame = CGRectMake(r.origin.x, r.origin.y, r.size.width, r.size.height-100);
ユーザーがキーボードを使い終わったら、100 を追加して元に戻します (100 の代わりに、キーボードの高さ、位置を含む通知オブジェクトから値を取得する必要があります)...