您好,我在 appdelegate 中创建了一个 nsnotificationcenter。下载完成后它会发送通知。我的课堂上有一个活动指示器,下载完成后我要隐藏它,但它不起作用。我可以看到我的 nslog,但它不会隐藏活动指示符。
这是我的代码:
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");
}