识别内存泄漏是否在NSMutableArray或UIAlertViewController中

时间:2015-08-24 17:54:13

标签: ios objective-c

我的应用程序崩溃,并通过仪器发现内存泄漏。内存泄漏称泄漏对象 Dim tempVal = Test_function(i)'<-- will give 2 MsgBox(i)'<--- will give 2 。但是,它还将 ResponsibleFrame 称为NSMutableArray。我认为,当我使用UIAlertViewController代替UIAlertView时,它将责任框架显示为UIAlertViewController并将UIAlertViewController修改为UIAlertView。它仍显示相同的内存泄漏。我怎么想解决这个问题。 Memory Leak Image

更新代码

UIAlertViewController

添加图片 Reference Count Image

1 个答案:

答案 0 :(得分:0)

您正在使用ARC,但您的productListArray具有保留限定符,请将其替换为强限定符或弱限定符(如果此数组已由其他对象拥有)