Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Please disregard #1

Closed
ZoeSummers opened this issue Aug 18, 2011 · 3 comments
Closed

Please disregard #1

ZoeSummers opened this issue Aug 18, 2011 · 3 comments

Comments

@ZoeSummers
Copy link

No description provided.

@ZoeSummers
Copy link
Author

@nicklockwood
Copy link
Owner

Hi Zoe,

Using it is very simple, basically if you have an image on the web, you get a reference to it as follows:

NSURL *imageURL = [NSURL URLWithString:@"http://example.com/images/foo.jpg"];

If you are trying to load a file from your application bundle, get a reference to it as follows:

NSString *imagePath = [[NSBundle mainBundle] pathForResource:@"foo" ofType:@"jpg"];
NSURL *imageURL = [NSURL fileURLWithPath:path];

Once you've got your URL, to display it on the screen, just get any ordinary UIImageView and load the image by saying:

imageView.imageURL = imageURL;

As soon as you set this property, the image will start loading in the background and will appear in the image view once it's loaded.

If you're using it with iCarousel, you probably want to set the imageURL in the carousel:viewForItemAtIndex: method when you create the imageView.

Nick

On 18 Aug 2011, at 14:27, ZoeSummers wrote:

Hi

I'm obviously being very thick but I can't work out how to use this from just looking at the .h file and reading the notes on this site.

I'm trying to use this in conjunction with your iCarousel, but as a tester, I'm just trying to get a single UIImageView placed in the view in IB to work.

Do you know of any sample projects (Xcode 4) that I can use for reference?

Sorry...

Z

Reply to this email directly or view it on GitHub:
https://github.com/demosthenese/AsyncImageView/issues/1

@nicklockwood
Copy link
Owner

Not sure what you mean by "found a threaded solution" - AsyncImageView also uses threading.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants