-
Notifications
You must be signed in to change notification settings - Fork 68
Open
Description
Steps to reproduce:
- Create non-ARC project that is using CYRTextView.
- Set -fobjc-arc parameter to CYRTextView modules on Build Phases - Compile Sources.
- Build the application.
Actual result:
There will be a build error.
Should be:
Sources should be compiled successfully.
Possible fix:
Change the following code to the new one:
@Property UIColor *gutterBackgroundColor;
@Property UIColor *gutterLineColor;
-->
@Property (nonatomic, strong) UIColor *gutterBackgroundColor;
@Property (nonatomic, strong) UIColor *gutterLineColor;
Metadata
Metadata
Assignees
Labels
No labels