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

Popular posts from this blog

c# - passing input text from view to contoller with FacebookContext using Facebook app -

ios - Does Core Data autoupdate a many to many relationship on saving -

Calling a C++ function from C# by passing a string with variable size to it -