iPhone XCode 3.0 Template Update
Jason Troy pointed out something to me about my template. It was hard coded to the initial Objective-C class files in the project. If you added any new files, they would not be compiled. I fixed the template and you can get the updated version here.
I just got back from the hospital last week. My wife and I had our son. Benjamin Scott Stahlhood, III. I have pictures up on my Web Gallery.
0 TrackBacks
Listed below are links to blogs that reference this entry: iPhone XCode 3.0 Template Update.
TrackBack URL for this entry: http://www.cocoamachine.com/mt-tb.cgi/8
This template is great! I added modified the Makefile to 1. detect if the IPHONE_IP is reachable 2. only kills SpringBoard if the Application did not exist.
if ping -t 1 -c 1 $(IPHONE_IP) ; then ssh root@$(IPHONE_IP) '[ -d /Applications/$(PRODUCT_NAME).app ] && echo Application exists on iPhone || touch ~/.xcode_kill_sb'; scp -r $(APP_ABS) root@$(IPHONE_IP):/Applications; ssh root@$(IPHONE_IP) 'if [ -e ~/.xcode_kill_sb ]; then rm ~/.xcode_kill_sb; killall SpringBoard; else echo skip killing SpringBoard; fi'; else echo iPhone not available; fi