2011-10-13 57 views

回答

2

比較沒有問題。我會在一些NSLogs中查看賦值前後的VAL,以及[tb1.text doubleValue]的結果。我懷疑這裏發生了什麼是你假設比較不起作用,因爲正在增加的值不是預期的。

0

我在代碼中找不到任何錯誤,但只是想編輯一下。你可以寫

NSString *psgn = @"/";   //you can combine 2 line of your code into single 
if([psgn isEqualToString:@"/"]) // Did not work. 
{ 
    val = val + [tb1.text doubleValue]; 
}else{ 
    NSLog(@"What's the value of psgn %@ then, after condition fails"); 
}