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.
CustomView *customView = [...]; [self.view addSubview:customView];
CustomView クラスが他のビューに追加されたとき、またはスーパービューが変更されたときに検出する必要があります。
とを使用willMoveToSuperview:しdidMoveToSuperviewて、ビューがいつ移動したかを検出できます。layoutSubviewsスーパービューがフレームを変更したときに呼び出されます。
willMoveToSuperview:
didMoveToSuperview
layoutSubviews
また、addsubviewの前にCustomviewのTAGを割り当て、特定のTAGで検出します。