我有一個簡單的UIAlertView
顯示用戶運行應用程序。它有這樣的結構:UIAlertView顯示多次
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Welcome!", "")
message:NSLocalizedString(@"This is a welcome message.", "")
delegate:nil
cancelButtonTitle:@"OK"
otherButtonTitles: nil];
[alert show];
[alert release];
問題是,我如何定製它來顯示每5個運行的例子?
在此先感謝;)
'每5次運行' - 你的意思是每5次應用程序開始執行? – CAMOBAP
你可以更清楚一點:「每5次運行」 – mozkarakoc
是的,每5次應用程序開始執行;)它在viewDidLoad上。 – Icarox