by Dj Sison | May 2, 2016 | iOS Development
First, the similarities. Both OverFullScreen and OverCurrentContext have the “Over” in their names, meaning that both modal presentation styles will not remove the views underneath the newly presented views. This is useful when you want to show a modal... read more
by Dj Sison | May 1, 2016 | iOS Development
AVMakeRectWithAspectRatioInsideRect I have recently discovered this method through a work colleague. I have been manually computing the size that fits a CGRect but maintains aspect ratio before, but this method will easily replace that. This is one of the benefits of... read more
by Dj Sison | Dec 31, 2015 | Apps, AppStore
Space Flappy, the Reverse Flappy Game for iOS is now out in the App Store. Space Flappy is a Flappy Bird game with a twist: play the game in REVERSE! What are you waiting for? Download now!... read more
by Dj Sison | Oct 6, 2015 | Misc
Happy Goals – Habits & Goals Tracker is discounted for a limited time in the iOS App Store! Don’t miss this chance. Download now!... read more
by Dj Sison | Sep 17, 2015 | iOS Development
When getting the current language of the device, we usually use the following API: Objective-C Objective-C [NSLocale preferredLanguages] 1 [NSLocale preferredLanguages] or Swift Swift NSLocale.preferredLanguages() 1 NSLocale.preferredLanguages() In iOS 8 and below,... read more
by Dj Sison | Sep 4, 2015 | iOS Development
What is __kindof? __kindof is a new feature of the Objective-C language announced by Apple, together with other new features such as Nullability Annotations and Generics. Xcode 7 is needed to use __kindof, so be sure to use that when going over through this post. How... read more
by Dj Sison | Sep 3, 2015 | iOS Development
Difference of UIDeviceOrientation and UIInterfaceOrientation It is important to know the difference of UIDeviceOrientation and UIInterfaceOrientation values, in order to determine what you really need in your application. Most of the time, you will need... read more