I\'ve searched and searched for a tutorial for this but none of them are what I\'m looking for. I\'ve tried Apple\'s sample but it is just colors and I don\'t know how to make i
Here's another answer...
NSArray* nibViews = [[NSBundle mainBundle] loadNibNamed:@"Views" owner:self options:nil]; infoView = [nibViews objectAtIndex:0]; [self.view addSubview:infoView];
Then you have your view.
Cheers