| 123456789101112131415161718 |
- //
- // SettingsItemView.h
- // 千模
- //
- // Created by Drew on 2018/10/27.
- // Copyright © 2018年 MUMEI. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- IB_DESIGNABLE
- @interface SettingsItemView : UIView
- @property (nonatomic, strong)IBInspectable NSString *label;
- @property (nonatomic, assign)IBInspectable BOOL showLine;
- @end
- NS_ASSUME_NONNULL_END
|