You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
return 2 when pass [email protected], but return 1 when pass [email protected].
so "result.range.location >= 3" should be "result.range.length >= 3"
The text was updated successfully, but these errors were encountered:
tongyuhu
changed the title
In_NSStringPathScale function,It should be "result.range.location >= 3" ,It should be "result.range.length >= 3".
In_NSStringPathScale function ,"result.range.location >= 3" should be "result.range.length >= 3".
Jun 5, 2019
tongyuhu
changed the title
In_NSStringPathScale function ,"result.range.location >= 3" should be "result.range.length >= 3".
In _NSStringPathScale function ,"result.range.location >= 3" should be "result.range.length >= 3".
Jun 5, 2019
static CGFloat _NSStringPathScale(NSString *string) {
if (string.length == 0 || [string hasSuffix:@"/"]) return 1;
NSString *name = string.stringByDeletingPathExtension;
__block CGFloat scale = 1;
}
return 2 when pass [email protected], but return 1 when pass [email protected].
so "result.range.location >= 3" should be "result.range.length >= 3"
The text was updated successfully, but these errors were encountered: