JSPatchConvertor icon indicating copy to clipboard operation
JSPatchConvertor copied to clipboard

JSPatch Convertor is a tool that converts Objective-C code to JSPatch script automatically.

Results 4 JSPatchConvertor issues
Sort by recently updated
recently updated
newest added

NSString *str = @"document.javascript" '.'会被转成() 在字符串中应该被忽略

NSString *actionUrl = [[SomeStore sharedStore].testData stringValueForKey:@"action"];

``` objc @implementation ViewController - (void)loadNewData{ [[NetAPIManager sharedManager] requestWithParam:params andBlock:^(id data, NSError *error) { if (data) { if ([data isKindOfClass:[NSDictionary class]]) { }} else{ } }]; } @end ``` 转换结果为:...