Author:
Dominic Wroblewski
has contributed 2 article(s)
Dominic Wroblewski started off as a developer early on in high school, creating simple applications as fun projects. Through time, he developed applications for the iPhone and iPad for both himself and for his clients. Currently he is co-director of his own company TerraCoding Ltd and works as a freelance developer for a number of clients and start-ups. He is moving into his final year as a Masters Computer Science student at the University of Sheffield.
Quick iOS Tip: Customise your fonts!
Posted in Tutorials on: July 13th, 2012 by: Dominic Wroblewski
When designing and developing apps for iOS, you may find that most of the time you are doing something such as [UIFont systemFontOfSize:13.0f] But you don’t have to! iOS comes with a huge list of fonts that can be easily included in your application with ease to make your apps look even nicer than before. One way to check the list of fonts, is to open up Interface Builder and check out the list of fonts from the inspector for ...
Read Full Article
Creating an NSObject that makes REST API calls (with threading)
Posted in Tutorials on: August 23rd, 2011 by: Dominic Wroblewski
In this tutorial I am going to teach you how to create your own NSObject that can make calls to your own web REST API and use it to retrieve the response received from the server. I am going to do this with the help of ASIFormDataRequest (ASIHTTPRequest). This will mean your iOS app will be able to make calls to your web server and download information to your app. The following tutorial is useful for if you want to ...
Read Full Article