• Stars
    star
    145
  • Rank 245,352 (Top 5 %)
  • Language
  • Created almost 10 years ago
  • Updated almost 9 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

iOS Guidelines used in Yalantis ;)

iOS Guidelines

Project Structure

  • Organized .xcodeproj: files are grouped by layers (Presentation, Domain/Model, Infrastructure, etc), responsibilities (UI, Model, Logic, Vendor, etc), roles, etc. No flat structure allowed
  • Organized project folder: desirable but not required to keep file structure in sync with .xcodeproj
  • One .m / .swift == One class. No extra classes allowed
  • Localization is required even for the case, when you have only one language. Therefore adding extra language won't cause any difficulty in future
  • Images and other resources (.plist) should be grouped as well (i.e. $SRCROOT/Resources/Images/Common/, $SRCROOT/Resource/Assets/)

File Structure (.m)

  • Structure
imports

related constants

class extension

@implementation
- dealloc
- init methods
- other
@end
  • Method sections should be separated by #pragma mark - $sectionName

Braces, Asterisk

  • Curly braces are opened on the same line with code, closed - on a new line. For short blocks / closures a single line can be used
  • Asterisk placed near the name Type *var = ...;
  • Every code block should be wrapped by {}:
if (statement) {
    NSLog(@"%@", var);
}

The only exception is a short statement and an immediate return in the beginning:

- (void)performSomeTask {
    if (!user.hasToken) return;
    ...
}

Spaces, Formatting

General

  • Tab consists of 4 spaces
  • Max symbols in a row: 120
  • Use space after if, while, for and similar:
if (pointer != someOtherPointer)

CGFloat result = width * height * 2.f;

BOOL contentExists = self.content.length > 0;

for (int i = 0; i < x; i++) { ... }
  • Alignment: do not align code as ASCII-art.
  • Separate logical code blocks with 1 line wrap. Random number of \n is not allowed

Variable declaration

  • Between Type & Protocol there are no spaces: id<NSObject> object = ...;
  • Between var and casting parentheses there are no spaces: ClassType *a = (ClassType *)b;, ScalarType a = (ScalarType)b;

Class Declaration

  • If listing protocols goes beyond 120 characters, place each on a separate line:
@interface SCHCategoryViewController : UIViewController <UITableViewDelegate> 

@interface SCHCategoryViewController : UIViewController <
    UITableViewDelegate, 
    UITableViewDataSource, 
    SCHSyncronizationDelegate
>

Method Declaration

  • Use a single space between +/- and a returned type. Any additional spaces in arguments list are not allowed: - (void)doSomethingWithString:(NSString *)string flag:(BOOL)flag;
  • If the method goes beyond 120+10 characters, place each argument on a separate line, align by colon:
- (void)doSomethingWithString:(NSString *)string
                         rect:(CGRect)rectangle
                       length:(NSUInteger)length;

Method Invocation

  • Method invocation should use the same formatting as for declaration

Function Declaration

  • No space symbol between name and arguments parentheses
  • If the method goes beyond 120+10 characters, parentheses should be placed the same way, as opening/closing braces. Place each argument on a separate line aligned by 1 tab:
void * LongLongLongFunction(
    id firstArgument, 
    id secondArgument,
    id *outArgument,
    int other
)

NSAssert(
    [controller conformsToProtocol:@protocol(EParticipantSelection)],
    @"Controller %@ should confrom to protocol",
    NSStringFromProtocol(@protocol(EParticipantSelection))
);

Access specifiers & ivars

  • @public, @private, @protected should be aligned by 1 tab:
@interface MyClass : NSObject {
    @private
    id _privateIvar;

    @protected
    id _protectedIvar;
}
  • Access specifiers should be declared explicitly

Property Declaration

  • Between @property and opening parentheses 1 space symbol should be used
  • Parameters ordering: atomic/nonatomic, memory policy, access specified (readonly/readwrite), setter declaration, getter declaration: @property (nonatomic, copy, readonly, getter=customGetter) NSString *value;

Protocol Declaration

  • @required and @optional aligned to the line beginning

Blocks / Closures Declaration

  • Code inside block / closure aligned by 1 tab
  • Opening and closing braces should be aligned by the first symbol of declaration:
dipatch_async(dispatch_get_main_queue(), ^{
    // your code here
});

NSArray *contentArray = nil;
[contentArray enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop){
     // your code here
}];

[UIView animateWithDuration:0.3 animations:^{
    // your code here
} completion:^(BOOL finished){
     // your code here
}];
  • There is no space between ^ and return type / arguments: ^(id response){} ^NSUInteger * (id response){}

Naming

In general we're using Apple Coding Guidelines for Cocoa with several highlights:

  • Three-letters prefix is REQUIRED
  • Methods for the non-project class categories should be prefixed by lowercasePrefix_: - (void)sch_performTask:(id)arg

Constants

  • Magical numbers are not allowed - constants should be used instead. Exception: constant value, used in local one place with descriptive name
  • No "raw" strings. Exception: the same as for the magical numbers
  • Desirable to use extern keyword:
// SCHNotifier.h
OBJC_EXTERN NSString * const SCHNotifierDidChangeStateNotification;
OBJC_EXTERN const CGFloat SCHDefaultAnimationDuration;

// SCHNotifier.m

NSString * const SCHNotifierDidChangeStateNotification = @"com.project.notifier.stateDidChange";
const CGFloat SCHDefaultAnimationDuration = 0.33;

Required / recommended best practices

Types Declaration / Usage

  • Use typedef for blocks declaration and custom enums / scalar types
  • Use NSInteger, NSTimeInterval, CGFloat, etc over plain types. Therefore it is easier to migrate to the 64-bits

Forward Declaration

Use forward declaration whenever possible

Ivars

@public ivars not allowed

Properties

  • Use copy specifier in case mutability leads to unexpected behaviour (i.e. when NSMutableString passed as NSString and mutated outside of the class)
  • Use readonly for public properties whenever possible to prevent unexpected class usage (i.e. outlet assigned from client code, etc)
  • (iOS only) Use nonatomic whenever possible to speedup code execution
  • Desirable to access underlying property's ivar only in init/setter/getter
  • Use of @property solely to create _ivar is not recommended and should be prohibited

Exceptions handling

Use exceptions only where it is required. Desirable to use NSError ** and / or return result status (i.e. Success, Fail)

Protocols

  • Delegate methods should always pass sender argument:
@protocol CustomClassDelegate <NSObject>

- (NSInteger)someDelegateMethod:(CustomClass *)customClass;
- (void)customClass:(CustomClass *)customClass didSelectRowAtIndexPath:(NSIndexPath *)indexPath;

@end
  • Protocol support for properties / vars should be declared explicitly: id<Protocol> instance = ...;, @property (nonatomic, weak) id<Protocol> delegate;

Boolean statements

  • Desirable to use implicit equality check: if (bar && baz && quux)

Preprocessor usage

  • Prefer c-functions / constants / methods over #define

AppDelegate

Keep your AppDelegate as clean as possible. Any logic, not related to AppDelegate (database seeding, networking, etc) is not allowed

Clean .pch

Group required #defines, constants to a separate header (SCHConstants.h, SCHDefines.h). Garbage in .pch is not allowed

More Repositories

1

uCrop

Image Cropping Library for Android
Java
11,656
star
2

Koloda

KolodaView is a class designed to simplify the implementation of Tinder like cards on iOS.
Swift
5,268
star
3

Side-Menu.Android

Side menu with some categories to choose.
Java
5,218
star
4

Phoenix

Phoenix Pull-to-Refresh
Java
4,024
star
5

Context-Menu.Android

You can easily add awesome animated context menu to your app.
Kotlin
3,841
star
6

StarWars.iOS

This component implements transition animation to crumble view-controller into tiny pieces.
Swift
3,761
star
7

FoldingTabBar.iOS

Folding Tab Bar and Tab Bar Controller
Objective-C
3,672
star
8

Persei

Animated top menu for UITableView / UICollectionView / UIScrollView written in Swift
Swift
3,451
star
9

GuillotineMenu

Our Guillotine Menu Transitioning Animation implemented in Swift reminds a bit of a notorious killing machine.
Swift
2,919
star
10

GuillotineMenu-Android

Neat library, that provides a simple way to implement guillotine-styled animation
Java
2,735
star
11

Side-Menu.iOS

Animated side menu with customizable UI
Swift
2,714
star
12

Segmentio

Animated top/bottom segmented control written in Swift.
Swift
2,504
star
13

DisplaySwitcher

Custom transition between two collection view layouts
Swift
2,326
star
14

Euclid

User Profile Interface Animation
Java
2,237
star
15

Horizon

Horizon - Simple visual equaliser for Android
Java
2,208
star
16

Pull-to-Refresh.Rentals-iOS

This project aims to provide a simple and customizable pull to refresh implementation. Made in Yalantis
Objective-C
2,143
star
17

StarWars.Android

This component implements transition animation to crumble view into tiny pieces.
Java
1,941
star
18

PullToMakeSoup

Custom animated pull-to-refresh that can be easily added to UIScrollView
Objective-C
1,924
star
19

Context-Menu.iOS

You can easily add awesome animated context menu to your app.
Objective-C
1,843
star
20

FlipViewPager.Draco

This project aims to provide a working page flip implementation for usage in ListView.
Java
1,839
star
21

Taurus

A little more fun for the pull-to-refresh interaction.
Java
1,671
star
22

SearchFilter

Implementing Search Filter Animation in Kotlin for Quora Meets LinkedIn, Our App Design Concept
Kotlin
1,657
star
23

ToDoList

Micro-Transitions for Smooth Android To-Do List Animations
Java
1,621
star
24

JellyToolbar

Kotlin
1,491
star
25

pull-to-make-soup

Custom animated pull-to-refresh that can be easily added to RecyclerView
Java
1,446
star
26

ColorMatchTabs

This is a Review posting app that let user find interesting places near them
Swift
1,382
star
27

Multi-Selection

Multiselection Solution for Android in Kotlin
Kotlin
1,373
star
28

PixPic

PixPic, a Photo Editing App
Swift
1,337
star
29

PullToRefresh

This component implements pure pull-to-refresh logic and you can use it for developing your own pull-to-refresh animations
Swift
1,250
star
30

Preloader.Ophiuchus

Custom Label to apply animations on whole text or letters.
Objective-C
882
star
31

CameraModule

Simple camera module for android applications
Java
684
star
32

ForceBlur

ForceBlur Animation for iOS Messaging Apps
Swift
670
star
33

EatFit

Eat fit is a component for attractive data representation inspired by Google Fit
Swift
655
star
34

FastEasyMapping

A tool for fast serializing & deserializing of JSON
Objective-C
553
star
35

PullToMakeFlight

Custom animated pull-to-refresh that can be easily added to UIScrollView
Swift
499
star
36

OfficialFoldingTabBar.Android

Kotlin
451
star
37

Watchface-Constructor

This is simple watchface constructor demo
Java
279
star
38

CloudKit-Demo.Swift

Swift
253
star
39

Koloda-Android

Kotlin
248
star
40

e-contact-android

Java
223
star
41

FitTrack

Concept of a fitness app.
Swift
168
star
42

ColorMatchTabsAndroid

Kotlin
152
star
43

CloudKit-Demo.Objective-C

Objective-C
135
star
44

AppearanceNavigationController

Example with advanced configuration of the navigation controller's appearance
Swift
98
star
45

GLata

Android library for creating OpenGL animations
Kotlin
84
star
46

VishnuCalendar

Kotlin
75
star
47

YACalendar

Yalantis Calendar
Swift
72
star
48

e-contact-ios

Swift
49
star
49

APIClient

Swift
40
star
50

YALConsole

Objective-C
40
star
51

DBClient

Swift
28
star
52

go-config

Go
8
star
53

android-styler

Java
5
star
54

go-pool

Go
4
star
55

go-monitoring

Go
2
star
56

go-influx

Go
2
star
57

Result

Swift
2
star
58

go-graphql

Go
1
star