你好,我創造了appdelegate.when下載一個nsnotificationcenter完成它發送一個通知。我有我的一類活動的指標,我該怎麼隱藏它,當下載完成,但它不工作。我可以看到我的nslog,但它並沒有隱藏acitivyindicator。NSNotificationCenter不能活動的指標設置爲隱藏
這裏是我的代碼:
viewDidLoad中:
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(refreshView:) name:@"loadingFinished" object:nil];
我的功能:
-(void)refreshView:(NSNotification*)notification
{
activity.hidden = YES;
self.view.userInteractionEnabled =YES;
NSLog(@"alles geladen zeiger wird geladen");
}
謝謝你,可以完美運行! –