Would probably go something like this:
CGRect frame = CGRectMake(0, 0, 320, 480);
float aWidth = frame.size.width; /* say for instance 320 */
float aHeight = frame.size.height; /* say for instance 480 */
int final = aWidth - aHeight;
NSLog(@"Should be -160, your answer: %i",final);