#pragma mark - message
-(void)showMessage:(NSString*)message withTitle:(NSString*)title
{
dispatch_async(dispatch_get_main_queue(), ^{
// メインスレッドで処理をしたい内容、UIを変更など。
NSAlert *alert = [NSAlert new];
alert.messageText = title;
alert.informativeText = message;
// NSAlert *alert = [NSAlert alertWithMessageText:nil defaultButton:@"OK" alternateButton:nil otherButton:nil informativeTextWithFormat:@"export completed"];
// メインスレッドで実行すること
[alert runModal];
});
}
posted with sticky on 2015.11.23