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.
nib を使用して作成された UIwebview があります。この webview(in nib) にアクセスする多くのコントローラーがあります。異なるコントローラーからの呼び出しごとに、それに応じて nib の webview のサイズを変更する必要があります。これをプログラムで実装するにはどうすればよいですか? 前もって感謝します
コントローラにこのUIWebViewのアウトレットを作成するだけで済みます。(およびプロパティ)
IBOutlet UIWebview *webExample; @property (nonatomic, strong) IBOutlet UIWebview *webExample;
コード内でUIViewWebに呼び出しを送信すると、送信者を検出してビューのフレームサイズを変更できます。
webExample.layer.frame=CGRectMake(x,y,200,200);