當我分析我的projetc,Xcode的分析找對象的一些潛在泄漏分配 但麻煩的是,我不知道這意味着什麼,以及如何解決這個內存問題:對象的潛在泄漏分配
這裏是我的文件的圖片,
這裏是代碼
#import "RoundRect.h"
//
// NewPathWithRoundRect
//
// Creates a CGPathRect with a round rect of the given radius.
//
CGPathRef NewPathWithRoundRect(CGRect rect, CGFloat cornerRadius)
{
//
// Create the boundary path
//
CGMutablePathRef path = CGPathCreateMutable();
CGPathMoveToPoint(path, NULL,
rect.origin.x,
rect.origin.y + rect.size.height - cornerRadius);
// Top left corner
CGPathAddArcToPoint(path, NULL,
rect.origin.x,
rect.origin.y,
rect.origin.x + rect.size.width,
rect.origin.y,
cornerRadius);
// Top right corner
CGPathAddArcToPoint(path, NULL,
rect.origin.x + rect.size.width,
rect.origin.y,
rect.origin.x + rect.size.width,
rect.origin.y + rect.size.height,
cornerRadius);
// Bottom right corner
CGPathAddArcToPoint(path, NULL,
rect.origin.x + rect.size.width,
rect.origin.y + rect.size.height,
rect.origin.x,
rect.origin.y + rect.size.height,
cornerRadius);
// Bottom left corner
CGPathAddArcToPoint(path, NULL,
rect.origin.x,
rect.origin.y + rect.size.height,
rect.origin.x,
rect.origin.y,
cornerRadius);
// Close the path at the rounded rect
CGPathCloseSubpath(path);
return path;
}
釷爲你提供非常有用的幫助。
PS:我的所有謨正常工作在iPhone模擬器 它是一個應用程序,用的TabBar和4段,兩段都是空的, 和其他兩個部分是tableview中的細節視圖(數據從拍攝plist) 當我在我的設備上測試應用程序時,兩個空白部分完美地工作,並且正確的兩個tableview中的一個顯示detailview,第二個tableview巫婆在模擬器中工作沒有推動detailview, 讓我發瘋的是它今天上午工作正常
一個問題: 是一個plist受它所包含的數據的限制,我的意思是,如果有一個大的例子與500字典它的例子EMS,這可能會麻煩的應用程序的良好顯示?
感謝
非常感謝我會嘗試 – a3116b