Great article on making a living out of the App Store from David Smith. Recommended read. Marc
Category Archives: articles
Surviving in the App Store
Great article on the challenges of a small company in the App Store. Must read: http://www.theverge.com/2016/3/2/11140928/app-store-economy-apple-android-pixite-bankruptcy Marc
3 Steps to fetch in Core Data (Swift)
1. Get the managed context: let managedObjectContext = (NSApplication.sharedApplication().delegate as! AppDelegate).managedObjectContext! //Change AppDelegate for the name of the class of your Application Delegate 2. Set a variable to store the data: var contentsOfTransactionFetchRequest = [] 3. Fetch the data you need let fetchRequest = NSFetchRequest(entityName: “Whatever”) …
Stick with it – Dan Counsell
I was going through the web when I found a great article from Dan Counsell called “Stick with it”. Recommended read. Actually I’ve subscribed to the entire series. Here’s a quote: […]Many people fail because they lose interest after a few months, they flit around and get bored when their project or business is not …