Skip to content

A collection of often used but time consuming to recreate logic for iOS.

License

Notifications You must be signed in to change notification settings

stucarney/MyiOSHelpers

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

60 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MyiOSHelpers

A collection of often used but time consuming to recreate logic for iOS.

Quick Tips

Blocks

Use MYCompletionBlock generically for block based methods. It should have most of the parameters needed by the caller, eliminating the need for gratuitously unique callbacks.

typedef void (^MYCompletionBlock)(id sender, BOOL success, NSError *error, id result);

Logging

Use DDLogVerbose or another cocoalumberjack macro instead of NSLog. This will make log messages more managable and eliminate the need to manually remove NSLog statements.

About

A collection of often used but time consuming to recreate logic for iOS.

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Languages

  • Objective-C 87.1%
  • Ruby 11.4%
  • C++ 1.5%