これについて助けが必要です。
-(IBAction) equalsPressed:(id)sender{
if(((IBAction) dividePressed) = YES){
int equals = labelsNumber.text.intValue;
labelsNumber.text = @"";
int ans = divide / equals;
NSString *answer = [NSString stringWithFormat:@"%d", ans];
labelsNumber.text = answer;
電卓を作成していますが、エラーは「Expected Expression」です。
助けてください