22、解決 messagesent to deallocated instance 0x52cc690 錯誤
當試圖對某個對象進行賦值操作的時候出現這個錯誤,如:
tfContent.text=bodyText;
此時,你可以打開NSZombieEnable選項,則console會有如下輸出:
***-[CFString _isNaturallyRTL]: message sent to deallocated instance 0x52cc690
說明_isNaturallyRTL消息被發送給了一個已經釋放了的對象。從上面的語句看,可能是這兩個對象:tfContent、bodyText。
你可以打印tfContent或者bodyText的內存地址,看看到底是哪個對象已經被釋放掉了:
NSLog(@"tfContent:0x%x",(int) tfContent);
NSLog(@"bodytext:0x%x",(int) bodyText);
結果表明是bodyText被提前釋放:
tfContent: 0x52cf160
bodytext: 0x52cc690
在適當的地方對bodyText進行retain,問題解決。
23、 putpkt:write failed: Broken pipe錯誤
重啟設備。
24、.hfile not found
實際上該.h文件並沒有被包含進target。選擇對應.m文件,點擊“ShowUtilities”按鈕(在工具條的右端),在Utilities中找到Target Membership,將Target前面的勾去掉,然後再重新勾上。即相當於將該.m文件重新加入target的Buildphase中。
25、 Xcode 4:如何將for iPhone的xib轉變為for iPad
在Xcode 3.x中,將xib從iPhone版轉變為iPad版,通過Create iPad Version菜單。
但在Xcode 4.x中,這個菜單找不到了。通過一番摸索,筆者發現可以用如下方法將xib轉換為iPad版本。
1、修改xib源文件
xib文件其實是一個xml文件。在Project Navigator中,在xib文件上右鍵,選擇“Open As -> Source Code”,即可以源代碼方式查看xib文件,找到"com.apple.InterfaceBuilder3.CocoaTouch.XIB"一行,將其改為 "com.apple.InterfaceBuilder3.CocoaTouch.iPad.XIB",即增加了".iPad"。
按下?+F,打開搜索欄,點擊Replace菜單,將模式改變替換模式。將xib文件中所有"IBCocoaTouchFramework"用 "IBIPadFramework"替換。
按下?+S,保存修改。
2、修改xib的視圖尺寸
在xib文件上右鍵,選擇“Open As -> Interface Builder – iOS”,用IB模式打開。
選擇xib文件中的根視圖(UIView),在屬性面板中找到Size選項,將其改為Full iPad Screen。
現在,你可以有一個iPad版本的xib了。
26、icon dimensions (0 x 0) don't meet the size requirements.
打開Project的BuildSettings,找到Compress PNG Files,將值設置為No。
或者:
選中該png文件,在FileInspector面板中,找到File Type,將其由 "PNG" 修改為 "Icon".
27、警告: noprevious prototype for function
打開Target->BuildSettings,搜索prototype,將Missing Function ProtoTypes改為NO。
28、CorePlot編譯時出現 錯誤“Command /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/clangfailed with exit code 1”
請將Scheme 從 iOS Device 改為 iPhone 5.0 Simulator。或者將Compiler for C/C++ 改為 LLVM GCC4.2。同時,Core Plot 1.0 不再支持老的 armv6 CPU。
29、使用CABasicAnimation改變UIView的alpha值無效
UIView的alpha值,在CALayer中其實是"opacity",請使用opcity作為keyPath。
30、CorePlost:定制 Axis Label 後,Tick Mark 不顯示。
設置Axis 的majorTickLocations 為你想顯示 tick mark 的位置。
NSMutableArray*customTickLocations=[[[NSMutableArray alloc]init]autorelease];
for(int i=0;i<10;i++){
[customTickLocationsaddObject:[NSNumber numberWithInt:i]];
}
xAxis.majorTickLocations=[NSSetsetWithArray:customTickLocations];
31、定制的UITableViewCell, indentationLevel不能生效
需要在定制的UITableViewCell中實現layoutSubviews方法。
- (void)layoutSubviews
{
[super layoutSubviews];
float indentPoints = self.indentationLevel *self.indentationWidth;
for(UIView *view in self.subviews){
view.frame = CGRectMake(
view.frame.origin.x+indentPoints,
view.frame.origin.y,
view.frame.size.width,
view.frame.size.height
);
}
}