We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
OCRunner 版本号: 1.2.0
OCRunner 目前几处不兼容的地方
@available
@synthesize
@property
@interface
@end
@class
@protocol
The text was updated successfully, but these errors were encountered:
SilverFruity
No branches or pull requests
OCRunner 版本号: 1.2.0
OCRunner 目前几处不兼容的地方
@available
(iOS 10.0, *)) 写法@synthesize
写法;@property
(nonatomic, assign) NSInteger selectIndex;;@interface
TargetObject ()<
UITableViewDelegate,
UITableViewDataSource
>
这种写法。
7 不支持泛型
@interface
Target<NSObject> : Parent<NSObject>@end
8 不支持 声明类写法 。例如
@class
ClassA, ClassB;@protocol
Prococol1, Prococol2;The text was updated successfully, but these errors were encountered: