Loading...
Searching...
No Matches
NCFollowMeButton.h
Go to the documentation of this file.
1//
2// NCFollowMeButton.h
3// Follow Me button widget for navigation view
4//
5
6#import <UIKit/UIKit.h>
7
8NS_ASSUME_NONNULL_BEGIN
9
11
16typedef void(^NCFollowMeButtonCallback)(BOOL isFollowing);
17
27@interface NCFollowMeButton : UIButton
28
33- (instancetype)initWithOnPressed:(NCFollowMeButtonCallback)onPressed;
34
40- (instancetype)initWithOnPressed:(NCFollowMeButtonCallback)onPressed
41 config:(nullable NCFollowMeButtonConfig *)config;
42
44- (void)updateAppearanceForFollowingState:(BOOL)isFollowing;
45
47- (void)applyConfig:(nullable NCFollowMeButtonConfig *)config;
48
50@property (nonatomic, readonly, getter=isFollowing) BOOL following;
51
52@end
53
54NS_ASSUME_NONNULL_END