Nick Lockwood

Results 215 comments of Nick Lockwood

The code looks OK, although this line is redundant since it's the default anyway: ``` [AsyncImageLoader sharedLoader].cache = [AsyncImageLoader defaultCache]; ``` Can you post more of the code? - where...

You probably need to set the contentMode of the imageView to UIViewContentModeScaleToFill or something.

AsyncImageView doesn't currently support saving images to disk, so they're only cached in memory. In future I may add disk caching, but you would need to save the images yourself...

Sorry, I missed this the first time round. I'll investigate.

It's tricky. `initWithCoder` is not supposed to call `[self init]` because then you'd probably be setting all the properties twice. Ideally it would call `[super init]` or `[super initWithCoder:]`, but...

@tgunr did you check out the TodoList example in the Examples folder? The TodoList.m file uses `objectWithContentsOfFile:` to load its data from a plist.

I'm going to need a bit more information. Can you provide a sample app?

Yes, you can easily implement NSCopying yourself in a subclass of BaseModel, without using AutoCoding. Just add this method to your class: ``` - (id)copyWithZone:(id)zone { id copy = [[[self...

Can you post your project somewhere, and I'll investigate. Might be a problem with HRCoder, or it could be that relationships need to be handled in a different way, or...

AutoCoding only supports the encoding of types that are work with KVC, which may not include SEL. I'll look into it.