Я бы вставил UIAlert в IBAction при нажатии кнопки, как я могу это сделать? В этом UIAlert должно отображаться сообщение «Готово» и кнопка для его закрытия.
- (IBAction)onShowAlertView { UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"done" message:@"" delegate:nil cancelButtonTitle:@"close" otherButtonTitles:nil]; [alertView show]; [alertView release]; }