1.问题: 在dealloc方法中使用[self.xxx release]和[xxx release]的区别? 用Xcode的Analyze分析我的Project,会列出一堆如下的提示:Incorrect decrement of the reference count of an object that is not owned at this point by the caller 仔细看了下代码,都是在dealloc方法中使用了[self.xxx release]这样的语句引起的,把…
在我们的程序中经常会出现以下的代码: 如: 成员变量 public string Name; 或者用属性 private string name public string Name() { get { return name; } set { name = value; } } 当然,如果属性中get{} 和 set{}的方法不是这么简单或两个不…