gpt4 book ai didi

iphone - MKMapView上方的IOS activityIndi​​cator subview

转载 作者:行者123 更新时间:2023-11-29 13:35:23 26 4
gpt4 key购买 nike

我有一个 mapView (_mapView),它本身是我的 viewController 的一个 subview ,我想在获取大量图钉时添加一个 activityIndi​​cator,但是我无法让它出现在 mapView 上方,谁能告诉我为什么不

 UIActivityIndicatorView *activityIndicator = nil;
activityIndicator = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleGray] ;
CGRect frame = activityIndicator.frame;
frame.origin = CGPointMake(290, 12);
activityIndicator.frame = frame;
activityIndicator.autoresizingMask = UIViewAutoresizingFlexibleLeftMargin;
activityIndicator.tag = 2;
[self._mapView addSubview:activityIndicator];
dataMarkers = [[kepnService new] getPlacesByBounds:neCoord.latitude :neCoord.longitude :swCoord.latitude :swCoord.longitude]; // call to webservice
.... other processing code
[activityIndicator removeFromSuperview];

有关信息,我的 View 堆栈如下所示

subviews (
"<MKMapView: 0x6d6f320; frame = (0 0; 320 460); clipsToBounds = YES; layer = <CALayer: 0x6d99520>>",
"<UIToolbar: 0x6d93f70; frame = (-1 0; 342 44); autoresize = W+TM; layer = <CALayer: 0x6d8bbf0>>",
"<UINavigationBar: 0x6d9a4f0; frame = (0 416; 320 44); autoresize = W+BM; layer = <CALayer: 0x6d9a5b0>>"
)

最佳答案

似乎您正在添加事件指示器,阻塞主线程然后将其删除。

你应该做的是:

添加事件指标。将线程或 block 分离到后台以执行处理代码。完成后,移除事件指示器。

关于iphone - MKMapView上方的IOS activityIndi​​cator subview ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10695977/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com