1. 程式人生 > >iOS 幾秒後會自動消失提示框

iOS 幾秒後會自動消失提示框

tipWithMessage(@"沒有資料啦!");

//提示彈窗

NS_INLINEvoid tipWithMessage(NSString *message){

dispatch_async(dispatch_get_main_queue(), ^{

UIAlertView *alerView = [[UIAlertViewalloc] initWithTitle:@"提示"message:message delegate:nilcancelButtonTitle:nilotherButtonTitles:nil, nil];

        [alerView show];

        [alerView performSelector:@selector(dismissWithClickedButtonIndex:animated:) withObject:@[@0, @1]afterDelay:0.9];

    });

}