我发现了以下代码片段,该片段允许NSNotification
从任何后台线程发布到主线程上。我想知道这是否是一种安全且可以接受的做法?
dispatch_async(dispatch_get_main_queue(),^{
[[NSNotificationCenter defaultCenter] postNotificationName:@"ImageRetrieved"
object:nil
userInfo:imageDict];
});