How to compare two CGSize variables?

cocoa-touch, core-graphics, objective-c

Solution

Determine whether `firstSize` fits into `secondSize` without rotating:

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

Problem

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?

Original source