的Xcode Objective-C的字面認爲這:縮進和Xcode
NSArray *persons = @[
@{
@"name": @"Bob",
@"pet": @"cat"
},
@{
@"name": @"Alice",
@"pet": @"dog"
}
];
會更好縮進像這樣:
NSArray *persons = @[
@{
@"name": @"Bob",
@"pet": @"cat"
},
@{
@"name": @"Alice",
@"pet": @"dog"
}
];
你能教一下縮進Objective-C的文字Xcode的?
有沒有其他的選擇?
注:我已經知道我可以「力」與縮進CMD 選擇],但是這將消失時複製/粘貼,不會解決問題。
所有格式消失,當複製/粘貼,除非你「的風格貼」,不是嗎? – user1118321
@ user1118321是的,除了名爲'Paste and Preserve Formatting'並且鍵盤快捷鍵是opt + shift + cmd + V – Tyilo