2 TableView can custom it's title foot
3 Adding float title effect: titleForHeaderInSection:(NSInteger)section{return "ss"};
Favoriate background color
[UIColor colorWithRed:197.0/255.0 green:204.0/255.0 blue:211.0/255.0 alpha:1.0];
Generate random number
-
// Get random number between 0 and 500
-
int x = arc4random ( ) % 100 ;
-
// Get random number between 500 and 1000
-
int y = ( arc4random ( ) % 501 ) + 500 ) ;
- //Get random number among a specify number
- (rand()%6)+1