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);