新增app更新弹窗
This commit is contained in:
30
keyBoard/Class/Common/V/KBAppUpdateView.h
Normal file
30
keyBoard/Class/Common/V/KBAppUpdateView.h
Normal file
@@ -0,0 +1,30 @@
|
||||
//
|
||||
// KBAppUpdateView.h
|
||||
// keyBoard
|
||||
//
|
||||
|
||||
#import <UIKit/UIKit.h>
|
||||
|
||||
NS_ASSUME_NONNULL_BEGIN
|
||||
|
||||
@class KBAppUpdateView;
|
||||
|
||||
@protocol KBAppUpdateViewDelegate <NSObject>
|
||||
@optional
|
||||
- (void)appUpdateViewDidTapUpgrade:(KBAppUpdateView *)view;
|
||||
@end
|
||||
|
||||
@interface KBAppUpdateView : UIView
|
||||
|
||||
@property (nonatomic, weak) id<KBAppUpdateViewDelegate> delegate;
|
||||
|
||||
@property (nonatomic, copy) NSString *backgroundImageName;
|
||||
@property (nonatomic, copy) NSString *titleText;
|
||||
@property (nonatomic, copy) NSString *versionText;
|
||||
@property (nonatomic, copy) NSString *contentTitleText;
|
||||
@property (nonatomic, copy) NSArray<NSString *> *contentItems;
|
||||
@property (nonatomic, copy) NSString *upgradeButtonTitle;
|
||||
|
||||
@end
|
||||
|
||||
NS_ASSUME_NONNULL_END
|
||||
Reference in New Issue
Block a user