CGRect a = CGRectMake(0, 0, 12, 12);
CGRect b = CGRectMake(0, 15, 13, 13);
NSArray *array=[[NSArray alloc]initWithObjects:[NSValue valueWithCGRect:a]
//Get CGRect from NSValue
CGRect sectionRect = [[array objectAtIndex:0] CGRectValue];
CGRect b = CGRectMake(0, 15, 13, 13);
NSArray *array=[[NSArray alloc]initWithObjects:[NSValue valueWithCGRect:a]
//Get CGRect from NSValue
CGRect sectionRect = [[array objectAtIndex:0] CGRectValue];
This comment has been removed by the author.
ReplyDelete