reydanro / UIImageViewAligned

A UIImageView subclass which allows you to align the image left/right/top/bottom, even when contentMode is AspectFit.
MIT License
400 stars 69 forks source link

Fix issue with UITableViews and UIImageViewAligned #11

Open sebhopley opened 9 years ago

sebhopley commented 9 years ago

The issue with UITableViewCell is that it doesn't seem to call layoutSubviews when it gets redisplayed after a de-selection when returning from another UIViewController (i.e we just popped one off the stack). This soles the issue as when we return didMoveToWindow is called. I added in didMoveToSuperview for good measure, in my testing it didn't seem to have an effect but it may help elsewhere.