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.
是否可以在一个 UIViewController 中同时拥有 UIImageView 和 UIWebView?或者如何将 UIImageView 作为 SubView 添加到 UIWebView。我试图在情节提要中创建它,但是当我运行程序时,UIImageView 中的图像没有显示,只有 UIWebview 的 htmlstring。
您可以让它们都由单个视图控制器处理,方法是使它们成为视图控制器主视图的子视图并将它们安排在其中。
我不太确定创建 UIWebView 的子视图,因为它不仅是一个简单的视图,而且已经由它自己的子视图组成。
在根 UIView 中包含 UIImageView 和 UIWebView。定义属性以从 UIViewController 控制两个视图。