我正在尝试向我的 UIImageView 子类添加自定义属性。属性类型为 UIImageView。我在其他数据类型、UIColor、int 等方面取得了成功。但 UIImageView 只是没有出现在界面构建器的自定义字段中,我无法通过代码访问它。
#import <UIKit/UIKit.h>
IB_DESIGNABLE
@interface newLayerController : UIImageView
@property (nonatomic, copy) IBInspectable UIImageView *imageSheet;
- (void)drawShape:(CGPoint)point;
- (void)endTouch:(CGPoint)point;
- (void)startTouch:(CGPoint)point;
@end
有谁知道快速修复?