ios - How to overlay two images in ios6 with transparency -
i trying overlay 2 images , put text on top in view have. have working in ios7. here screen shot of results right gradient image on top of other image seen here in layout this works great except when test on phone ios6. goes nuts seen here. *i've deleted gradient layer , ran app again , background image remains same size (about half of should be). as can see, background image half of should be, , second image not overlaying. i've been @ 5 hours , can't seem find solution works. here code sets background image -(void) setdetails { if(_curinfo) { _lbltopname.text = _curinfo.company_name; if(!_curinfo.img) { showactivity(self); dispatch_queue_t aqueue1 = dispatch_get_global_queue(dispatch_queue_priority_default, 0); dispatch_async(aqueue1, ^{ _curinfo.img = getimagefromurl([nsstring stringwithformat:@"%@%@", g_serverurl, _curinfo.imgpath]); dispatch_async(dispatch_get_main_queue(), ^{ ...