Search code examples
objective-ccocoa-touchcore-graphics

How to compare two CGSize variables?


I want to make sure a CGSize is smaller or equal to another CGSize. like:

CGSize firstSize = CGSizeMake(1.0,1.0);
CGSize secondSize = CGSizeMake(5.0,3.0);
if(firstSize <= secondSize){
    Do Stuff . . .
}

How would I compare this?


Solution

  • Determine whether firstSize fits into secondSize without rotating:

    if(firstSize.width <= secondSize.width && firstSize.height <= secondSize.height)