How to create a UIButton Programmatically
So, a lot of people starting with iOS development begin their creations using the Interface Builder a lot, but when time comes, a specific functionality will require you to create UIButton in the code...
View ArticleHow to post to twitter in iOS 5 or greater
Posting to Twitter is one of the chosen social sharing by app developers, either to help promote the app by sharing it’s link, by allowing users to share content from inside the app or even for game...
View ArticleHow to create an On/Off UISwitch programmatically
This is one of the most easy objects to create programmatically. The UISwitch object is that famous ON/OFF switch that you can use in your in-app settings or in some editing screen. ON/OFF UISwitch...
View ArticleHow to get user external IP and Geolocation Programmatically in iOS
So the app you’re building requires for some reason that you get the user’s external ip and not the local device IP and you don’t know where to start. Well this is where I come in. Find below two...
View ArticleHow to load a different XIB for each device
Apple has decided to grace us with a new iPhone 5, but with the new iPhone came a new device resolution, and with a new device resolution came more work for the developers to adjust their apps to be...
View ArticleHow to post to user Facebook Wall in iOS 4 & 5 – Easy Mode
I spent a lot of time trying to find some code to simply post a status to a user Facebook Wall, but all the code that I found required me to integrate with the Facebook API, do all the Login...
View ArticleHow to create a simple UITableView with static data
One of the most feared things to newbies (at least it was for me) is to create UITableViews. At first it looks scary, but it’s in fact really simple and quick to create your first UITableView. The...
View ArticleWhy so serious? Let’s animate!
Isn’t that cool when you see those beautiful animations on that fancy app? Don’t you wonder how cool would it be if your app could do that too? Luckily, working with animations in iOS is a piece of...
View ArticleFMDB with SQLCipher Tutorial
After long hours of suffering, searching for a simple example on how to get my current SQLite database and encrypt using SQLCipher and FMDB, I was able to work on a code that is simple and it works!...
View ArticleHow to make a realtime blur on iOS 7
Hi all! I’m Bruno, the Guilmo’s new writer! ;D I’ll make my first post talking about realtime blur on iOS 7. No miracle here, just another way to do it. So, let’s go! If you search on Google or...
View Article