Tag Archives: Programming
Quick Hits: UIActionSheet cancel button strange behaviour
I just got bit by this and fixed it thanks to this StackOverflow post. http://stackoverflow.com/questions/1197746/uiactionsheet-cancel-button-strange-behaviour Long story short, if your launch an action sheet in a view that lives in a UITabBarController, the “hit” box for the cancel button gets … Continue reading
The 5 stages of 3.3.1
Developers have been up in arms on the news broken by Daring Fireball and TechCrunch. The reported change in the iPhone developer agreement definitely stops Flash developers from creating iPhone apps using the new tools available CS5, but the sword … Continue reading
I LOVE MonoTouch
Don’t get me wrong, XCode is great…in it’s own way…but as a .Net dev coming to the iPhone platform, MonoTouch rocks my world!
For the other devs in my shoes looking to play with MonoTouch, here are some things to keep in mind: Continue reading
Quick Hits: Unit Testing iPhone Apps
I have a few things to add to the woefully incomplete official documentation on setting up automated tests in your iPhone apps: You need to add your main application executable target as a direct dependency of the test target, so … Continue reading
UINavigationController Tricks
For an iPhone UI I’m developing, I need to have one UINavigationController nested inside another, and to have the inner UINavigationController’s events push a view on to the outer one’s stack. CocoaTouch didn’t give this to me for free, but … Continue reading