by Dj Sison | Aug 3, 2015 | iOS Development
When it comes to iOS Push Notifications, many developers are confused about the proper setup and combination of signing identities and the server to which to point your app to for registration of the device token. Here is a handy guide for this: If your app is signed...
by Dj Sison | Mar 18, 2014 | iOS Development
I usually create a Settings entry for my apps to include an Acknowledgements screen, where I display info about the Open Source libraries used in the app. This article will show you how to create one, with two base elements: Toggle Switch – which I will use to...
by Dj Sison | Nov 14, 2013 | iOS Development
This post demonstrates how to use UIScrollView with AutoLayout. The Scroll View will contain multiple smaller views. In my example, I will be using 3 UIViews with different background colors as the content of our scroll view. The final code can be downloaded here:...
by Dj Sison | Oct 9, 2013 | iOS Development
In the post “iOS: Defining a fixed or constant width or height constraint programmatically” , we programmatically added constraints that will ensure a fixed with and height for a view. This time, we will programmatically add constraints that will...
by Dj Sison | Oct 7, 2013 | iOS Development
I had a project where we display a UIWebView, where on failure to load, an alert will be displayed informing the user of the error. This is a bit troublesome, since there are lots of UIWebView errors, and we cannot handle all of them immediately. Silently ignoring the...
by Dj Sison | Oct 7, 2013 | iOS Development
In iOS 5 and below, to customize the background color and text color of a UITableView’s header or footer, we needed to create a custom UIView then return it from the following delegate methods: - (UIView *)tableView:(UITableView *)tableView...