0
キャンセルボタンを使用せずにalertviewを単独で消す方法。AlertViewはそれ自身で消えるべきである
キャンセルボタンを使用せずにalertviewを単独で消す方法。AlertViewはそれ自身で消えるべきである
使用この...そのそれはしばらくの間そこに滞在作る方法を...あまりにも速い消えるそのworking..But
-(void)showAlertView
{
// code for showing your alertView
[self performSelector:@selector(dismissAlertView) withObject:yourObject afterDelay:5]
}
-(void)dismissAlertView
{
[yourAlert dismissWithClickedButtonIndex:0 animated:YES];
}
感謝。? – Chandu
更新された答えを参照してください.. – Aravindhan
ya got it thanx – Chandu