Archive for February, 2009

How to popup a UIPickerView from the bottom of a UIScrollView in response to UITextField selection

Add a UIPickerView and have it popup into screen when the user clicks on a UITextField. All done using UIActionSheets

Posted on February 25, 2009 at 4:37 pm by Jordan Carter · Permalink · 12 Comments
In: Iphone · Tagged with: , , ,

I can’t click on the UIButton at bottom of UIScrollView

How do I click on the UIButton at the bottom of the UIScrollView? It doesn’t work?

Posted on February 25, 2009 at 4:01 pm by Jordan Carter · Permalink · One Comment
In: Iphone · Tagged with: , ,

My Terminal Cheat Sheet

Copy to remote: scp mylocal.file [email protected]:/home/jordan/mylocal.file Copy from remote: scp [email protected]:/home/remote.file remote.file Postgres dump: pg_dump myDBname > myDumpFile.dmp Postgres restore: psql myDbname < myDumpFile.dmp SVN Life Cycle Add project to svn: svn import project http://host_name/svn_dir/repository_name/project -m “First Import” example: svn import pricespy svn://wetware.co.nz/subversion/pricespy -m “Inital Import” Add files to svn: svn add file1 file2 file3 […]

Posted on February 23, 2009 at 6:22 pm by Jordan Carter · Permalink · 2 Comments
In: Web Development · Tagged with: 

iPhone Objective C UIView from Nib (xib) in UIScrollView in UITabBarController

So, thats a huge assed title.  Hopefully it got you here from Google tho, as intended. If you are here, you have probably scoured the internet for an answer to the above title. I have a UIView that I want in a UIScrollView, that is in a UITabbedView Controller AND I want to load the […]

Posted on February 23, 2009 at 5:06 pm by Jordan Carter · Permalink · 2 Comments
In: Iphone · Tagged with: , , , ,

What do you fly?

OS: Ubuntu 7.10 64bit VPS on Virtuozzo with Open host Two CPU’s 384mb Ram (no swap) OS: Ubuntu 9.04 on Xen One CPU, 400mb Ram (with some swap) Now moved to Rimuhosting.com Apache2 PHP Rails Enterprise Edition Phusion Passenger™ MySql Postgresql

Posted on February 22, 2009 at 11:31 am by Jordan Carter · Permalink · Leave a comment
In: Ubuntu Tricks · Tagged with: , , ,

Iphone UIWebView HTTP Basic Authentication

So I need to send a user to a page that requires a login. I want to save those details in the app and send them with the initial request. But HOW? #import "NSData+Additions.h" @implementation Utility + (void) addAuthToWebRequest:(NSMutableURLRequest*)requestObj email:(NSString*)email password:(NSString*)password{ NSString *authString = [[[NSString stringWithFormat:@"%@:%@", email, password] dataUsingEncoding:NSUTF8StringEncoding] base64Encoding]; authString = [NSString stringWithFormat: @"Basic […]

Posted on February 20, 2009 at 11:14 am by Jordan Carter · Permalink · 8 Comments
In: Iphone · Tagged with: , ,

Objective C (java)Static

So I have wanted some static variables (along the lines that Java implements it).  After a while I found my answer. DatabaseConfig.h @interface DatabaseConfig : NSObject { // Database variables } + (NSString*) databaseName; + (void) setDatabaseName:(NSString*)dbName; + (NSString*) databasePath; + (void) setDatabasePath:(NSString*)dbPath; DatabaseConfig.m static NSString *databaseName; static NSString *databasePath; @implementation DatabaseConfig + (NSString*)databaseName{ return […]

Posted on February 18, 2009 at 10:47 am by Jordan Carter · Permalink · Leave a comment
In: Iphone · Tagged with: 

Objective Resource to the rescue

So I’m working on a top secret military iPhone app to be deployed in a top secret location… Anyway, it needs to interact with a rails app.  Googled around, found objective resource which is a great objc port of Active Resource. Now, I needed to man handle it a bit for what I want it […]

Posted on February 17, 2009 at 9:12 am by Jordan Carter · Permalink · Leave a comment
In: Iphone · Tagged with: , , , ,