在其他子视图中添加子视图
我想在警报框中添加一个活动指示器视图,是否可以在另一个子视图中添加一个子视图?
I want to add an activity Indicator View inside and Alert Box is it possible to add an subView inside Another subView?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用下面的代码:
Use below code :
是的,有可能...
[alertView addSubview:activityIndicator];
yes it is possible...
[alertView addSubview:activityIndicator];
从技术上来说,是的。
只需分配并初始化两个视图,然后调用即可。
但是,这是否通过 Apple 的检查值得怀疑,因此您可能无法发布到 AppStore。
Technically, yes.
Simply alloc and init both views, then call
However, if this passes Apple's inspection is doubtful, so you may not be able to publish to the AppStore.