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?
To check for equality you can use, CGSizeEqualToSize function by Apple.
CGSize firstSize = CGSizeMake(1.0,1.0); CGSize secondSize = CGSizeMake(5.0,3.0); if(CGSizeEqualToSize(firstSize, secondSize)) { //they are equal }else{ //they aren't equal }
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With