我從JSON字符串中生成一個字典,並且其中一個字典的值旨在用作WebView對象的高度。從NSDictionary中爲CGRect.frame.size設置一個值
NSDictionary *dic = [jsonParser objectWithString:response];
CGFloat *height = [dic valueForKey:@"intHeightPixels"];
CGRect frame = webView.frame;
frame.size.height = height;
webView.frame = frame;
在第2行,我得到以下錯誤:
Initializing 'CGFloat' (aka float) with an expression of incompatible type 'id'.
我新手在目標CI不知道這有什麼去看到指針,鑄造,請給我一些輕。
你真棒,我不完全知道該行的結尾是什麼意思?是鑄造什麼?]感謝很多! – R01010010 2011-04-28 16:05:29
cgfloat高度和cgfloat *高度==完全不同 – 2013-08-28 12:17:22