性能优化–内存泄露问题的解决.doc

  1. 1、本文档共13页,可阅读全部内容。
  2. 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
性能优化–内存泄露问题的解决

内存泄漏问题的解决 内存泄漏(Memory Leaks)是当一个对象或变量在使用完成后没有释放掉,这个对象一直占有着这块内存,直到应用停止。如果这种对象过多内存就会耗尽,其它的应用就无法运行。这个问题在C++、C和Objective-C的MRR中是比较普遍的问题。 在Objective-C中释放对象的内存是发送release和autorelease消息,它们都是可以将引用计数减1,当为引用计数为0时候,release消息会使对象立刻释放,autorelease消息会使对象放入内存释放池中延迟释放。 上代码: [cpp]?view plaincopy -?(void)viewDidLoad?? ?? {?? ?? [super?viewDidLoad];?? ?? NSBundle?*bundle?=?[NSBundle?mainBundle];?? ?? NSString?*plistPath?=?[bundle?pathForResource:@team?? ?? ofType:@plist];?? ?? //获取属性列表文件中的全部数据?? ?? self.listTeams?=?[[NSArray?alloc]?initWithContentsOfFile:plistPath];?? ?? }?? ?? -?(UITableViewCell?*)tableView:(UITableView?*)tableView?cellForRowAtIndexPath:(NSIndexPath?*)indexPath?? ?? {?? ?? static?NSString?*CellIdentifier?=?@”CellIdentifier”;?? ?? UITableViewCell?*cell?=?[tableView?dequeueReusableCellWithIdentifier:CellIdentifier];?? ?? if?(cell?==?nil)?{?? ?? cell?=?[[UITableViewCell?alloc]?initWithStyle:UITableViewCellStyleDefault?reuseIdentifier:CellIdentifier];?? ?? }?? ?? NSUInteger?row?=?[indexPath?row];?? ?? NSDictionary?*rowDict?=?[self.listTeams?objectAtIndex:row];?? ?? cell.textLabel.text?=??[rowDict?objectForKey:@name];?? ?? NSString?*imagePath?=?[rowDict?objectForKey:@image];?? ?? imagePath?=?[imagePath?stringByAppendingString:@.png];?? ?? cell.imageView.image?=?[UIImage?imageNamed:imagePath];?? ?? cell.accessoryType?=?UITableViewCellAccessoryDisclosureIndicator;?? ?? return?cell;?? ?? }?? ?? -?(void)tableView:(UITableView?*)tableView?didSelectRowAtIndexPath:(NSIndexPath?*)indexPath?? ?? {?? ?? NSUInteger?row?=?[indexPath?row];?? ?? NSDictionary?*rowDict?=?[self.listTeams?objectAtIndex:row];?? ?? NSString?*rowValue??=??[rowDict?objectForKey:@name];?? ?? NSString?*message?=?[[NSString?alloc]?initWithFormat:@”您选择了%@队。”,?rowValue];?? ?? UIAlertView?*alert?=?[[UIAlertView?alloc]initWithTitle:@”请选择球队”?? ?? message:message?? ?? delegate:self?? ?? cancelButtonTitle:@”Ok”?? ?? otherButtonTitles:nil];?? ?? [alert?show];?? ?? [tableView?deselectRowAtIndexPath:indexPath?animated:YES];?

文档评论(0)

dajuhyy + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档