0
votes
2answers
37 views

UITableView with images crashes app when I scroll down a lot

I have this simple UITableView and each cell has an image corresponding to it. All I'm doing is displaying a title for the image and the image itself in each cell. Here is my cellForRowAtIndexPath: - ...
0
votes
0answers
62 views

Click a imageview popup a view showing the original image

I have loaded several images to a table view. The image has been resized, and I want that when user tap on the imageview, it pops up a view showing the original image size, and when user click again ...
0
votes
0answers
57 views

AFNetworking UIImageView iOS4.3 __unsafe_unretained

I am using the 0.10.x version of AFNetworking in an ARC project that needs to target iOS4.3 I am using the UIImageView Category in conjunction with a UITableViewCell and have run into a few problems. ...
0
votes
2answers
155 views

AFNetworking UIImage NSURL

I use AFNetworking to get beer details from my rails api, and I want to show an image from a url that is returned. Example API response description = "Super tasty"; id = 3; "label_url" ...
1
vote
0answers
230 views

Downloading image asynchronously using AFnetworking causing memory warning sometimes?

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 ...
0
votes
2answers
52 views

same image but getting different size when installing the app in simulator and device,AFNetWorking

I am doing like following to determine the size of the downloaded image during the block and then i will set the size of the uiimageview accordingly. self.headerView is an outlet connection to ...
0
votes
1answer
67 views

Add UIImage to NSMutableArray at Specified Index via AFNetworking

I'm fetching images from web service using the code below in my cellForRowAtIndexPath: [cell.posterImageView setImageWithURLRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:[postersURLArray ...
0
votes
1answer
228 views

How can I achieve this effect (rounded corners, inner glow) on my UIImageViews?

I have a dark background, so I would very much like the beveled effect on the first image. I'm trying to recreate these effects on my UIImageViews optimized for use inside UITableViewCells on ...
0
votes
0answers
61 views

AFNetworking af_sharedImageCache crash in UIImageView+AFNetworking.m

I'm using the UIImageView+AFNetworking.h category that comes with AFNetworking here: [self.myImageView setImageWithURL:[NSURL URLWithString:myImageUrl]]; which gives me an EXC_BAD_ACCESS here: + ...
2
votes
2answers
677 views

AFNetworking - Fade animation on image while scrolling UITableView

I have a Table View which displays images using lazy loading from AFNetworking with a placeholder image. I'm trying to accomplish a way to fade from the placeholder to the image when it's loaded. My ...
0
votes
2answers
182 views

Is there a way to run code once a method has finished?

I want to start code once a method is completed. I have a UICollectionView which loads an array of images from a server and then adds those images to the ImageView in the cell I create to better ...
2
votes
2answers
1k views

AFNetworking setImageWithURLRequest not setting remote image

I'm using AFNetworking's UIImageView+AFNetworking.h to asynchronously load an online image onto a UIImageView. The remote image loads very well when I use setImageWithURLRequest:, but when I try ...
0
votes
2answers
762 views

Resize UIImage in in asynchronous mode, using AFNetworking

I am using AFNetwork in my application to get some data from my web service. In these data, there are some images with random sizes, I need to add some UIImageView. My problem is to adjust the image ...
-1
votes
1answer
102 views

Several redeclaration errors occur when AFDownloadRequestOperation is added

When I add AFDownloadRequestOperation I get several errors that result in the inability for me to successfully build my project... These errors all seem to be of a redeclaration nature. My first ...
0
votes
1answer
422 views

Issue accessing UIImage outside of AFImageRequestOperation ImageRequestOperationWithRequest: success block

I'm trying to display an image returned from AFImageRequestOperation ImageRequestOperationWithRequest: but it appears that the image is only available inside the success block. I've tried saving it to ...
0
votes
2answers
1k views

Issue with setImageWithURL AFNetworking success handler

Neither the success or failure handler appears to be called when setImageWithURLRequest: is called on my UIImage object. SetImageWithURL does not set my image either. If I use setImageWithURL: ...
0
votes
0answers
553 views

UIImageVIew+AFNeworking setImageWithURL issue

I'm trying to use UIImageView+AFNetworking to load an image from a web server but the image does not load. I placed the same URL in my web browser and it works just fine. I also I made a test view ...
5
votes
1answer
304 views

AFNetworking memory allocation keeps rising

I'm making an app which will fetch pictures resources and text from web service. I pick the great AFNetworking's UIImageView+AFNetworking category to deal with the image downloading stuff. However, ...
2
votes
3answers
872 views

Making a UIImageView grey

I'm setting UImageViews within table cells using setImageWithUrl from the AFNetworking library, but I need the images to be greyscale... is there any way I can do this. I've tried a few UIImage ...
0
votes
1answer
3k views

Get UIImageView using Afnetworking and put it in an array

As the title says, i need to get the image and put it in an array. UIImageView *myImage = [[UIImageView alloc] init]; [myImage setImageWithURL:[NSURL URLWithString:@"http://host.com/images/1/1.png"] ...
4
votes
3answers
2k views

AFNetworking+UIImageView placeholder image shows up, but not URL image

I'm trying to use the AFNetworking UIImageView call to load images from a URL as shown below: [self.image setImageWithURL:[NSURL URLWithString:feed.imageURL] placeholderImage: [UIImage ...