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.
ビューが読み込まれる前に関数を実行したいのですが、試してみましinitWithNibNameたが成功しませんでした。レンダリングする前にロードする関数はありますか?
initWithNibName
でこれを行うloadView:
loadView
- (void)loadView { [self myImportantMethod]; [super loadView]; }
これにより、ViewControllermyImportantMethodのビューがロードされる前にが呼び出されます。
myImportantMethod
initWithFrameを試しましたか?私の経験では、そのうちの1つが最初に呼び出されます。