You can get tutorial source from https://github.com/blastar/CoreDataWithiCloud/tree/master I saw lot of tutorials about this, but almost none were working.
Quick tip: UITableView – search when user stops typing
In some cases, when you are using UITableView with UISearchBar you don’t want to filter you view immediately – f.e. when you’re fetching result from remote source, to […]
Quick tip: Convert float to int in Swift
It is a new language, ok. But why people can complex simple things? For years we used: int newvar = (int)oldfloat; and it was ok. Not only in […]
Quick tip: dispatch_once using Swift
There is no advantages of using this in Swift, but in case you have Objective-C you can do it using: class Singleton { class var sharedInstance : Singleton […]
Quick tip: Localizable.strings – validation failed
This can be really painfull – you made you translation and at compiling time you see such error: Localizable.strings:0: error: validation failed: The data couldn’t be read because […]
iOS 7.1.1 with improvements to Touch ID
iOS 7.1.1 is now available through Software Update in the Settings application on an iPhone or iPad. Documentation accompanying the update says it contains “improvements, bug fixes and […]
Quick tip: Using background operations with Grand Central Dispatch
Yes, Grad Centeral Dispatch may seems big and complex. But if you need to put some work into background, its pretty easy, all you have to do is: […]
iWork for iCloud Updated
As noted by 9to5Mac, Pages, Numbers, and Keynote for iCloud have gained updated designs for their document, spreadsheet, and presentation editors along with support for Retina displays. All […]
Quick tip: using singleton pattern
So far I saw many examples, but not every of them is valid, follow my rules and you will get proper singleton pattern. in MySingleton.h file: @interface MySingleton : […]