Skip to content

Commit 3770a1a

Browse files
committed
[Xcode 15][RCTUIImageView] Make remove nonatomic attribute from clipsToBounds
1 parent 7028f7e commit 3770a1a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

React/Base/RCTUIKit.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -589,7 +589,8 @@ typedef UIImageView RCTUIImageView;
589589
#else
590590
@interface RCTUIImageView : NSImageView
591591
NS_ASSUME_NONNULL_BEGIN
592-
@property (nonatomic, assign) BOOL clipsToBounds;
592+
// FUTURE: When Xcode 14 is no longer supported (CI is building with Xcode 15), we can remove this override since it's now declared on NSView
593+
@property (assign) BOOL clipsToBounds;
593594
@property (nonatomic, strong) RCTUIColor *tintColor;
594595
@property (nonatomic, assign) UIViewContentMode contentMode;
595596
NS_ASSUME_NONNULL_END

0 commit comments

Comments
 (0)