我正在写一个iOS程序而且我有内存泄漏。我在macOS上重现它,我不知道如何解决它。这很简单。
int main(int argc, const char * argv[]) {
@autoreleasepool {
system("top -l 1 | grep LEAK"); // baseline
NSMutableData* dataobj = [NSMutableData dataWithLength:DATA_SIZE];
system("top -l 1 | grep LEAK"); // baseline + 8 bytes
memset([dataobj mutableBytes], 1, DATA_SIZE);
system("top -l 1 | grep LEAK"); // baseline + DATA_SIZE
dataobj = nil;
system("top -l 1 | grep LEAK"); // baseline + DATA_SIZE
}
return 0;
}
最后,我期待再次在基线处使用内存,但事实并非如此。等待10秒仍然是相同的结果。我相信我对ARC的理解或NSData
。
感谢所有提前看一下的人。
答案 0 :(得分:1)
您通过以下方式创建数据:
xxxxx::Application.routes.draw do
# We ask that you don't use the :as option here, as Spree relies on it being the default of "spree"
mount Spree::Core::Engine, at: '/'
mount MailPreview, at: 'mail_view' if Rails.env.development?
Spree::Core::Engine.routes.draw do
get 'measure' => 'home#measure'
get 'about' => 'home#about'
get 'sizes' => 'orders#sizes'
get 'paypal' => 'paypal#express', as: :express_paypal
get '/products/:id/:variant_name' => 'products#show', as: :product_variant_detail
resources :variants, only: [] do
get :carousel
get :description
end
resources :orders do
member do
post 'increase', defaults: { format: 'json' }
post 'decrease', defaults: { format: 'json' }
end
collection do
put 'add_coupon_code'
end
end
namespace :admin do
resources :blog_entries, only: [] do
resources :blog_entry_images, except: [:index, :show]
end
end
end
end
由于Memory Management Policy您不是此对象的所有者,并且它被放置在自动释放池中。由于您的代码完全嵌入NSMutableData* dataobj = [NSMutableData dataWithLength:DATA_SIZE];
中,因此无法检测到数据的重新分配,因为它会由此池保存。
您的代码不包含泄漏,操作系统负责清理。这通常会使您的实验成功非常值得怀疑。最后,我想赞同Amin的评论:你使用了错误的方法。你应该使用Instruments。