Wednesday, February 16, 2011

iPhone Application Development 20110216

I’ve been reading http://www.amazon.com/Teach-Yourself-iPhone-Application-Development/dp/0672330849 and here’s what I’ve learned today

Xcode

  • Launching Xcode.
  • Choosing a Project Type
  • Adding Resources to a Project
  • Editing and Navigating Code
  • Jumping to Methods with the Symbol Menu
  • Code Completion
  • Configuring the Build Output
  • Building and Executing the Application
  • Correcting Errors and Warnings
  • Setting an Application Icon
  • Setting a Launch Image
  • Setting the Status Bar Display

iPhone Simulator

  • Generating Multitouch Events
  • Rotating the Simulated iPhone

My Gears

Tuesday, February 15, 2011

Cost of Becoming an iOS Developer

 

So you want to know the upfront cost of programming apps for Apple’s iOS?

That’s all you need: no more than Php 60K.

Wednesday, February 9, 2011

BPI Branch Locator

Sometimes you want to find the BPI Bank closest to your area and here’s a self-service URL:

http://info.bpiexpressonline.com/bpiprod/prodserv.nsf/Pop-Ups/BranchesSearch

 

Wednesday, February 2, 2011

Displaying Custom Error Messages / Enabling Detailed Errors on IIS 7

 

I was deploying an ASP.NET MVC 2 default application to one of my GoDaddy hosted sites when I encountered the below screen:

20110203-1524-Runtime Error

How can I know the underlying problem?

Simply edit the web.config file.

(1) Inside <system.webServer> node add

<httpErrors errorMode=”Detailed” />

<asp scriptErrorSentToBrowser=”true” />

(2) Inside <system.web> node add

<customErrors mode=”Off” />

<compilation debug=”true” />

 

Wasn’t that so easy?!

 

NOTE: Remove the said lines after you have found and applied the fix to your problem. You don’t want your regular website visitor know the internals of your application, right? Smile