uitableview - didSelectRowAtIndexPath resizes the imageview on iOS7 -
ऐसा होता है यदि cell.selectionStyle UITableViewCellSelectionStyleNone से भिन्न होता है।
// FrameFiew - ( UITableViewCell *) तालिकादृश्य: (UITableView *) तालिका दृश्य सेलफोराअटइंडपैथ: (NSIndexPath *) indexPath {... imageView = [[FXImageView alloc] initWithFrame: CGRectMake (10, 10, 50.0f, 50.0f)]; ImageView.contentMode = UIViewContentModeScaleAspectFit; imageView.asynchronous = हाँ; imageView.cornerRadius = 5.0f; imageView.tag = indexPath.row; //cell.selectionStyle = UITableViewCellSelectionStyleNone; ...}
< यह FXImageView फ़्रेमवर्क पर एक बग था, मैं बस UIImageView में बदलता हूं और अब यह काम करता है।
Comments
Post a Comment