, , :
- (void)showAlertWithTitle:(NSString *)t
{
[[[[UIAlertView alloc] initWithTitle:t
message:nil
delegate:nil
cancelButtonTitle:@"OK"
otherButtonTitles:nil
] autorelease] show];
}
:
[SomeClass dispatchNastyAsyncBlock:^{
// ... do stuff, then
[self performSelectorOnMainThread:@selector(showAlertWithTitle:)
withObject:@"Here comes the title"
waitUntilDone:YES];
}];
user529758