Wednesday, September 08, 2010
Querying HKEY_CURRENT_USER remotely
Wednesday, August 18, 2010
Command Line Screen Recording
Friday, June 18, 2010
AppleTV Harddrive Hack
Tuesday, April 20, 2010
Pushing View Controllers
PhotoListView *secondPage = [[PhotoListView alloc] initWithNibName:@"PhotoListView" bundle:[NSBundle mainBundle]];
[[self navigationController] pushViewController:secondPage animated:YES];
4) Done.
Getting back into Objective-C Programming
NSArray *pointsArray = [PolyShape pointsForPolygonInRect:rect numberOfSides:[polygon numberOfSides]];
//count the number of objects in the array and set a matching integer
int i;
i=[pointsArray count];
//setup our C array to match the number of objects in the pointsArray...
CGPoint thePointArray[i];
//for each object in the pointsArray, set a CGPoint value, add it to the C-Array (thePointArray) in it's matching index
for (id object in pointsArray) {
CGPoint thePoint = [object CGPointValue];
i--;
thePointArray[i] = CGPointMake(thePoint.x, thePoint.y);
}

