Property | Type | Description | |
---|---|---|---|
CGSizeZero |
Method | Description | |
---|---|---|
Add ( |
Returns the sum of the two sizes instances.
|
|
CGSizeEqualToSize ( |
Indicates whether two sizes are equal. Original declaration is : int CGSizeEqualToSize ( CGSize size1, CGSize size2 ); |
|
CGSizeMake ( |
Returns a size structure constructed from dimension values you provide. Original declaration is : CGSize CGSizeMake ( float width, float height ); |
|
Divide ( |
Returns the result of the division of the size instance by the given factor.
|
|
Multiply ( |
Returns the product of the size instance by the given factor.
|
|
Substract ( |
Returns the difference of the two sizes instances.
|
|
operator ( ) : |
Implements the operator +.
|
public static Add ( |
||
size1 | A size. | |
size2 | A size. | |
return |
public static CGSizeEqualToSize ( |
||
size1 | The first size to examine. | |
size2 | The second size to examine. | |
return | int |
public static CGSizeMake ( |
||
width | A width value. | |
height | A height value. | |
return |
public static Divide ( |
||
size | The size. | |
factor | The factor. | |
return |
public static Multiply ( |
||
size | The size. | |
factor | The factor. | |
return |
public static Substract ( |
||
size1 | A size. | |
size2 | A size. | |
return |