28 lines
636 B
Objective-C
28 lines
636 B
Objective-C
//
|
|
// XPMineAccountView.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2021/9/16.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@interface XPMineAccountSubView: UIView
|
|
///显示名字
|
|
@property (nonatomic,strong) UILabel *titleLabel;
|
|
///背景图
|
|
@property (nonatomic,strong) UIImageView *backImageView;
|
|
///免费门票
|
|
@property (nonatomic,strong) UIButton *freeTicketButton;
|
|
@end
|
|
|
|
@interface XPMineAccountView : UIView
|
|
///我的账户
|
|
@property (nonatomic,strong, readonly) XPMineAccountSubView *accountView;
|
|
///推荐好友
|
|
@property (nonatomic,strong, readonly) XPMineAccountSubView *recommendView;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|