ios - Uiimageview not showing in iPhone 6 and 6 plus -
i have collection view custom cell.
and in custom cell iphone 6 , 6 plus uiimageview not showing. when printing frame there.
nslog(@"%f-%f-%f-%f",cell._image.frame.origin.x,cell._image.frame.origin.y,cell._image.frame.size.width,cell._image.frame.size.height); log - 0.000000-0.000000-177.500000-168.000000
cell screenshot -
any suggestions doing wrong...
note - working in ipad, iphone 4,4s,5.
have checked see if image loaded. iphone 6 (vs working ones) looking file/resource of name imagename@2x.png
its possible image view setting alpha 0 (so image ends being white background). may have need comment out (or switch on phone type) :
- (void) setalpha:(float)alpha { // [super setalpha:alpha]; }
where image loaded from? maybe show code too. maybe have offsets put image off display?
Comments
Post a Comment