achansonjr

Results 4 comments of achansonjr

I know this is a bit of an old issue, but I recently came across the same issue when trying to open a large file on an iPad4. I don't...

That worked perfectly. However I think I had a mistake in the earlier explanation, but it would have produced the same issue. The actual implementation for the snippetHelper is as...

I have made this possible with a few changes. Inside KNMultiItemSelector.m replace the following in didSelectRowAtIndexPath ``` objective-c if (item.imageUrl) { [cell.imageView setImageWithURL:[NSURL URLWithString:item.imageUrl] placeholderImage:[UIImage imageNamed:@"KNDefaultImage"]]; } ``` with the...

Try this then :) Inside KNMultiItemSelector.m replace the following in didSelectRowAtIndexPath ``` objective-c if (item.imageUrl) { [cell.imageView setImageWithURL:[NSURL URLWithString:item.imageUrl] placeholderImage:[UIImage imageNamed:@"KNDefaultImage"]]; } ``` with the following ``` objective-c if (item.imageUrl)...