Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.46 KB

iOS.ru.md

File metadata and controls

38 lines (29 loc) · 1.46 KB

Гайдлайны и нотации для Objective-C/XCode/iOS

Naming conventions

-getCacheDirectory; should probably be named as -cacheDirectory.
-convertToJson should probably be named as -jsonValue

Active subclassing

So, instead of

@interface MyAppFeaturedYouTubeVideosViewController : UIViewController

it would be

@interface MyAppFeaturedYouTubeVideosFeaturedViewController : MyAppViewController
@interface MyAppViewController : UIViewController

Ссылки