-1

この次のコードを使用して、数秒後に UILabel を非表示にしています。残念ながら、NSInvocation の進行中にユーザーがビューを閉じると、アプリがクラッシュします。

- (void)showStatusBarwithText:(NSString*)text{
    lblNotification.hidden=NO;
    NSInvocation* invoc = [NSInvocation invocationWithMethodSignature:[lblNotification methodSignatureForSelector:@selector(setHidden:)]];
    [invoc setTarget:lblNotification];
    [invoc setSelector:@selector(setHidden:)];
    lblNotification.text=text;
    BOOL yes = YES;
    [invoc setArgument:&yes atIndex:2];
    [invoc performSelector:@selector(invoke) withObject:nil afterDelay:1];

}

そしてそれがエラーです

 *** -[UILabel setHidden:]: message sent to deallocated instance 0x1a8106d0

どうすれば解決できますか?使ってみました

[NSObject cancelPreviousPerformRequestsWithTarget:lblNotification]

では、- (void)viewDidDisappear:(BOOL)animatedしかし、それは動作しません。

4

3 に答える 3

3

使用方法は次のとおりですperformSelector

- (void)showStatusBarwithText:(NSString*)text{
   lblNotification.hidden=NO;
   [self performSelector:@selector(hideLabel) withObject:nil afterDelay:1];//1sec
}


-(void)hideLabel{
  lblNotification.hidden= YES;
}

またはタイマーで

[NSTimer scheduledTimerWithTimeInterval:1//1sec
                                 target:self
                               selector:@selector(hideLabel)
                               userInfo:nil
                                repeats:NO];
于 2014-08-01T14:28:23.487 に答える
2

なぜあなただ​​けを使用しないのですdispatch_aferか?構文はより明確です。

- (void)showStatusBarwithText:(NSString*)text{
    lblNotification.hidden=NO;
    dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(1.0 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
        lblNotification.hidden = YES;
    });
}
于 2014-08-01T14:22:40.893 に答える
1

これは、ここで objectlblNotificationの代わりに渡すためです。infoc
[NSObject cancelPreviousPerformRequestsWithTarget:lblNotification]

このようにする方が良いでしょう:

- (void)showStatusBarwithText:(NSString*)text{
    lblNotification.hidden=NO;
    lblNotification.text=text;
    [lblNotification performSelector:@selector(setHidden:) withObject:@(1) afterDelay:2];     
}

- (void)viewWillDisappear:(BOOL)animated
{
    [super viewWillDisappear:animated]
    [NSObject cancelPreviousPerformRequestsWithTarget:lblNotification];
}
于 2014-08-01T14:30:42.437 に答える