In this tutorial I teach you how to load a number of files into your application. These include PDFs, Spreadsheets and Powerpoints. Main Code: NSString *filePath = [[NSBundle mainBundle] pathForResource:@”Test_PDF” ofType:@”pdf”]; url = [NSURL fileURLWithPath:filePath]; [webView loadRequest:[NSURLRequest requestWithURL:url]]; For a UITableView: In RootViewController: -(void) makeData { sections = [[NSMutableArray alloc] init]; pdfs = [[NSMutableArray alloc] Read more »
iOS Presentation By Paul Hancock 021
iOS Presentation By Paul Hancock 021 Image by Michael Kappel iOS Presentation By Paul Hancock www.meetup.com/SoftDev/events/59055692/ Software development Community Meeting Schedule Meet and greet 11:30 Pizza and Beverages 11:45 Paul Hancock’s Presentation 12:00 (Noon) Presentation starts at Noon sharp, our presenter needs to leave for the airport. This is the start of a series of Read more »
On the Farm: Bundibugyo Cocoa farming boom
www.ntvuganda.co.ug For those who hail from Bundibugyo district the word cocoa is part of their daily life. This crop has in recent years brought smiles onto the faces of the residents and the traders a like because its now the major source of income for almost all households in the district. But how is this Read more »
iPhone 4 Case Program
iPhone 4 Case Program Image by makipapa
How can I use cocoa in chocolate milk?
Question by Trix_R_not_4_kids: How can I use cocoa in chocolate milk? I have baking cocoa but not the regular chocolate milk cocoa powder. Can you still make chocolate milk with it? How much cocoa and sugar should I put in my milk? Best answer: Answer by Happy CookerYou need to make chocolate syrup first. 2 Read more »
iOS Presentation By Paul Hancock 012
iOS Presentation By Paul Hancock 012 Image by Michael Kappel iOS Presentation By Paul Hancock www.meetup.com/SoftDev/events/59055692/ Software development Community Meeting Schedule Meet and greet 11:30 Pizza and Beverages 11:45 Paul Hancock’s Presentation 12:00 (Noon) Presentation starts at Noon sharp, our presenter needs to leave for the airport. This is the start of a series of Read more »
Cocoa trees
Cocoa trees Image by IITA Image Library Cocoa trees in cocoa plantation. (file name: FOR_TC_008)
iPhone Programming – UIImageView Collison
A tutorial teaching you how to detect image collision and do something about it. Useful for Game Apps. Main Code Used: -(void)ifCollided { if (CGRectIntersectsRect(image.frame, collisionImage.frame)) { UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@”Collided” message:@”You have collided with another image” delegate:self cancelButtonTitle:@”Reset” otherButtonTitles:@”Ok” ,nil]; [alert show]; [alert release]; } } -(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)index { if (index Read more »
How much cocoa should I eat in order to get health benefits?
Question by Svartljus: How much cocoa should I eat in order to get health benefits? I just bought some bars of chocolate that are 90% cocoa. I know that there are health benefits of cocoa. What is the portion size I need take on a daily basis in order to get the benefits? Best answer: Read more »
Learning iPhone Programming: From Xcode to App Store
Learning iPhone Programming: From Xcode to App Store Get the hands-on experience you need to program for the iPhone and iPod Touch. With this easy-to-follow guide, you’ll build several sample applications by learning how to use Xcode tools, the Objective-C programming language, and the core frameworks. Before you know it, you’ll not only have the Read more »


