Set background images for iOS

Source: Internet
Author: User

1. uiscrollview setting background image

 
//Setup the scroll ViewUiscrollview * tempscrollview = (uiscrollview *) Self. view; tempscrollview. contentsize= Cgsizemake (320,720);//Set stationary background, so that while the user scroll the background is//Fixed.Uiimage * IMG = [uiimage imagenamed:@"Bg-body.jpg"]; [Tempscrollview setbackgroundcolor: [uicolor colorwithpatternimage: img];

 

2. Set the background image in uiview

 
Self. View. backgroundcolor = [uicolor colorwithpatternimage: [uiimage imagenamed:@"1. jpg"];

 

3. Comparison of the following types of recommendations

Set background image in uiview

 
Uiimageview * bgview = [[uiimageview alloc] initwithimage: ttimage (@"Bundle: // uiscrollviewbg1.jpg")]; Bgview. Frame= Cgrectmake (0,0, Scrollview. Frame. Size. Width, scrollview. Frame. Size. Height); [self addsubview: bgview]; [bgview release];

 

Set the background image in uiscrollview

 
Uiimageview * bgview = [[uiimageview alloc] initwithimage: ttimage (@"Bundle: // uiscrollviewbg.png")]; Bgview. Frame= Cgrectmake (0,-100,320,100); [_ Scrollview addsubview: bgview]; [bgview release];

 

Reprint please explain the source: http://www.cnblogs.com/hubj/archive/2012/05/22/2513254.html

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.