我的应用程序崩溃,并通过仪器发现内存泄漏。内存泄漏称泄漏对象为 Dim tempVal = Test_function(i)'<-- will give 2
MsgBox(i)'<--- will give 2
。但是,它还将 ResponsibleFrame 称为NSMutableArray
。我认为,当我使用UIAlertViewController
代替UIAlertView
时,它将责任框架显示为UIAlertViewController
并将UIAlertViewController
修改为UIAlertView
。它仍显示相同的内存泄漏。我怎么想解决这个问题。
更新代码
UIAlertViewController
答案 0 :(得分:0)
您正在使用ARC,但您的productListArray具有保留限定符,请将其替换为强限定符或弱限定符(如果此数组已由其他对象拥有)