Archive for January, 2009

Membuka Rekening kok Repot??

Posted: January 31, 2009 in Story

Pada hari jumat kemarin, gw berencana membuka rekening baru. Pada awalnya, semua berjalan lancar-lancar aja. Pelayanan di Bank pun pada awalnya juga baik. Gw juga dilayani dengan cukup baik dimulai dari penutupan rekening sampai pembentukan rekening baru. Disini ada kejadian cukup lucu. Karena pas gw disuruh nulis jumlah uang ke dalam bentuk kalimat, terjadi kesalahan. [...]

Hmm, aku punya beberapa sumber untuk belajar Objective-C : http://icodeblog.com MikeTeo.net iPhone Developer CookBook by Erica Sadun (Book) http://www.servin.com/iphone/iPhone-Programming-View-Based-App.pdf http://iphonedevelopertips.com/ http://howtomakeiphoneapps.com/ http://www.stanford.edu/class/cs193p/ http://www.stanford.edu/class/cs193p/cgi-bin/drupal/ http://perahu.net/ (Bahasa Indonesia) http://adeem.me/blog/ http://courses.csail.mit.edu/iphonedev/ iPhone OS Developer Guide (Dari Web Apple) http://chrisalvares.com/blog/ http://www.iphonesdkarticles.com/2008/07/first-iphone-application.html http://iphone-3d-programming.labs.oreilly.com/index.html (iPhone 3D Programming) http://hotfile.com/dl/45742825/2c83117/Apress.iPhone.and.iPad.Apps.for.Absolute.Beginners.May.2010.pdf.html http://hotfile.com/dl/34678506/88ddb6c/BR-1063.rar.html Password : wowebook.net http://hotfile.com/dl/20348617/c33ebf4/softvnn__Addison_Wesley_-_The_iPhone_Developer_s_Cookbook_2nd_Edition__2009___softvnn.zip.html http://rapidshare.com/files/236629201/Cocoa_Programming_for_Mac_OS_X_For_Dummies_www.update-books.com.rar.html Beginning iPhone Development http://depositfiles.com/en/files/6awxhgyb3 http://rapidshare.com/files/236241391/Core.Animation__www.update-books.com.rar.html http://www.4shared.com/document/AfyOx0Y-/3166OS_Cocos2D_For_iPhones_Beg.htm http://rapidshare.com/files/196265214/iPhSDKDev.rar [...]

Beberapa sintaks penting di Objective-C : Membuat UIButton melalui Code CGRect buttonFrame = CGRectMake(0.0, 0.0, 20.0,20.0); UIButton *button = [[UIButton alloc] initWithFrame:buttonFrame]; [button setTitle:@"Generate" forState:UIControlStateNormal]; button.font = [UIFont boldSystemFontOfSize:BUTTON_FONT_SIZE];//buat nambahin aksi di button yang kita buat [button addTarget:self action:@selector(generate:) forControlEvents:UIControlEventTouchUpInside]; //Ini adalah fungsi generatenya : – (void)generate:(id)sender { } State di UIButton [button setBackgroundImage:deleteImage forState:UIControlStateNormal]; [...]