mirror of
https://github.com/oxen-io/session-ios.git
synced 2023-12-13 21:30:14 +01:00
29 lines
729 B
Objective-C
29 lines
729 B
Objective-C
//
|
|
// Copyright (c) 2017 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
#import "NSNotificationCenter+OWS.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@implementation NSNotificationCenter (OWS)
|
|
|
|
- (void)postNotificationNameAsync:(NSNotificationName)name object:(nullable id)object
|
|
{
|
|
dispatch_async(dispatch_get_main_queue(), ^{
|
|
[self postNotificationName:name object:object];
|
|
});
|
|
}
|
|
|
|
- (void)postNotificationNameAsync:(NSNotificationName)name
|
|
object:(nullable id)object
|
|
userInfo:(nullable NSDictionary *)userInfo
|
|
{
|
|
dispatch_async(dispatch_get_main_queue(), ^{
|
|
[self postNotificationName:name object:object userInfo:userInfo];
|
|
});
|
|
}
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|