File tree Expand file tree Collapse file tree 1 file changed +17
-1
lines changed
Expand file tree Collapse file tree 1 file changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,8 @@ Here are some of the documents from Apple that informed the style guide. If some
2323
2424## Table of Contents
2525
26- - [ Code Organization] ( #code-organization )
26+ * [ Language] ( #language )
27+ * [ Code Organization] ( #code-organization )
2728* [ Spacing] ( #spacing )
2829* [ Comments] ( #comments )
2930* [ Naming] ( #naming )
@@ -47,6 +48,21 @@ Here are some of the documents from Apple that informed the style guide. If some
4748* [ Xcode Project] ( #xcode-project )
4849
4950
51+ ## Language
52+
53+ US English should be used.
54+
55+ Preferred:
56+ ``` objc
57+ UIColor *myColor = [UIColor whiteColor ];
58+ ```
59+
60+ Not Preferred:
61+ ``` objc
62+ UIColor *myColour = [UIColor whiteColor ];
63+ ```
64+
65+
5066## Code Organization
5167
5268* use ` #pragma mark - ` to categorize methods in functional groupings and protocol/delegate implementations following this general structure.
You can’t perform that action at this time.
0 commit comments