http://inobi.org/shuffle-array-di-objective-c/
http://www.cocoanetics.com/2009/04/shuffling-an-nsarray/
http://www.cocoanetics.com/2009/04/shuffling-an-nsarray/
Dynamic height
+(float) calculateHeightOfTextFromWidth:(NSString*) text: (UIFont*)withFont: (float)width :(UILineBreakMode)lineBreakMode { [text retain]; [withFont retain]; CGSize suggestedSize = [text sizeWithFont:withFont constrainedToSize:CGSizeMake(width, FLT_MAX) lineBreakMode:lineBreakMode]; [text release]; [withFont release]; return suggestedSize.height; }