5
나는 Uncrustify를 통과 한 후, 그것은Uncrustify에 대해 한 번에 최대 들여 쓰기 설정이 있습니까?
[paths enumerateObjectsUsingBlock:^(NSString * path, NSUInteger idx, BOOL * stop) {
BOOL isDir;
if ([fm fileExistsAtPath:path isDirectory:&isDir]) {
......
}
}];
이 Uncrustify 하나에 두 개의 들여 쓰기를 축소하기 위해 어쨌든이 있고이된다, 그러나이
[paths enumerateObjectsUsingBlock:^(NSString * path, NSUInteger idx, BOOL * stop) {
BOOL isDir;
if ([fm fileExistsAtPath:path isDirectory:&isDir]) {
......
}
}];
과 같은 목적 C 코드의 블록을 코드의 형식을 유지합니까?
답변을 찾으셨습니까? – Zyphrax