Hello everyone i am using AFNetworking to download images in a scroll view. Let's say about 20 images to be downloaded.
[image setImageWithURL:[NSURL URLWithString: [@"example.com"]];
Everything works fines until if there are 100 images each 300 k in size then it causes memory warning and the app is suspended and closed.
- My question is it causing a memory leak somewhere?
- Should i use a tableview instead of the scrollview?
thanks :)