我知道人们对如何在 Objective-C 中格式化方法调用有不同的看法,即
[self presentViewController:scanViewController
animated:YES
completion:nil];
对比
[self presentViewController:scanViewController animated:YES completion:nil];
我使用 .clang 格式文件中的哪些选项来控制这种缩进?(如果我不想要它,冒号排队等)
另外,只是我还是这个格式化程序对块一无所知?注意成功块的 if 语句没有缩进,失败块中的 NSLog 函数也没有缩进。
[self.client getPath:path
parameters:parameters
success:^(AFHTTPRequestOperation *operation, id responseObject) {
if ([from_id isEqualToString:self.from_id]) {
self.image.image = [UIImage imageWithData:responseObject];
}
}
failure:^(AFHTTPRequestOperation *operation, NSError *error) {
NSLog(error.description);
}];