UIView内部有UIWebView,UIIAView上看不到UIActivityIndi​​catorView

时间:2014-08-11 16:29:51

标签: ios ios7 uiwebview storyboard uiactivityindicatorview

我有UIView UINavigationCorntoller,并在UIView内放置了一个webView。下面我有一个按钮。在相应的.h-和.m文件中,我设置了有效的activityIndi​​cator,如果放在webView下面,它在加载过程中是可见的。将其定位在webView上时,它是不可见的。出了什么问题?有什么需要改变? this works fine

The activity Indicator is positioned below the Web View to be on top

Doing this the activityIndicator is not visible during loading process

1 个答案:

答案 0 :(得分:1)

将此视图添加到您的视图设置(viewWillAppear)

    [self.view bringSubviewToFront:<activity indicator>];

或者您可能必须从父视图中删除活动指示符并插入Web视图顶部。

设置断点并通过分析所有视图及其顺序来检查指标是否真的隐藏在Web视图后面。

NSArray *viewList = [self.view subviews];