session-ios/SignalServiceKit/src/Profiles/OWSProfilesManager.h
Matthew Chen 0bd23345a1 Sketch out the profile view.
// FREEBIE
2017-08-01 16:17:59 -04:00

23 lines
458 B
Objective-C

//
// Copyright (c) 2017 Open Whisper Systems. All rights reserved.
//
NS_ASSUME_NONNULL_BEGIN
extern NSString *const kNSNotificationName_LocalProfileDidChange;
// This class can be safely accessed and used from any thread.
@interface OWSProfilesManager : NSObject
- (instancetype)init NS_UNAVAILABLE;
+ (instancetype)sharedManager;
- (nullable NSString *)localProfileName;
- (nullable UIImage *)localProfileAvatarImage;
@end
NS_ASSUME_NONNULL_END