I have this:
_launcherView.pages = [NSArray arrayWithObjects:
[NSArray arrayWithObjects:
[[[TTLauncherItem alloc] initWithTitle:@"New Note"
image:@"bundle://Icon.png"
URL:@"http://www.google.com/" canDelete:NO] autorelease],
[[[TTLauncherItem alloc] initWithTitle:@"To Do Items"
image:@"bundle://Icon.png"
URL:@"http://www.yahoo.com/" canDelete:NO] autorelease],
nil],
nil];
How can I set the width and height for the items? I want all items to be 64x64 pixels.
Thanks