1234567891011121314151617181920 |
- //
- // previewLandscapeTopView.h
- // 双子星云手机
- //
- // Created by xd h on 2024/7/10.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface previewLandscapeTopView : UIView
- @property(nonatomic,strong) UIButton*backButton;
- @property(nonatomic,strong) UILabel *titleLabel;
- @property (nonatomic,copy) void (^didClickButton)(NSInteger tag);
- @end
- NS_ASSUME_NONNULL_END
|