Add UIImageView to UIScrollVIew

Add UIImageView to UIScrollVIew

How can i add UIImageView to UIScrollview? I have already created both UIIMageView and ScrollView programmatically and added it the view. as given below..

[self.view addSubview:myScrollView];

But still my image view is not visible..why?

View Answers

June 8, 2012 at 5:07 PM

sometimes it may occurs when we forget to add the image view to scrollview. So, make sure that you have added the scrollview to uiview and your image view is added to the scroll view. See the given code it might help you...

Add UIImageView to UIScrollVIew

- (id) init
{
    if(self = [super init])
    {
        scroll = [[UIScrollView alloc] init];
        scroll.scrollEnabled = YES;
        scroll.pagingEnabled = YES;
        scroll.directionalLockEnabled = YES;
        scroll.showsVerticalScrollIndicator = NO;
        scroll.showsHorizontalScrollIndicator = NO;
        scroll.delegate = self;
        scroll.backgroundColor = [UIColor blueColor];
        scroll.autoresizesSubviews = YES;
        scroll.frame = CGRectMake(0, 0, 320, 480);
        [self.view addSubview:scroll];

        view1 = [[UIImageView alloc] init];
        [scroll addSubview:view1];

        view2 = [[UIImageView alloc] init];
        [scroll addSubview:view2];
    }

    return self;
}









Related Tutorials/Questions & Answers:
Add UIImageView to UIScrollVIew
. See the given code it might help you... Add UIImageView to UIScrollVIew - (id...Add UIImageView to UIScrollVIew  How can i add UIImageView to UIScrollview? I have already created both UIIMageView and ScrollView programmatically
UIImageView UIScrollView Zoom
UIImageView UIScrollView Zoom   I am trying to implement a Zoomin / Zoomout feature in UIImageView and wanted to have the scroll capability init.   UIImageView *tempImage = [[UIImageView alloc]initWithImage:[UIImage
Advertisements
uiscrollview add images
uiscrollview add images  How to add dynamic images to UIScrollView
UIIMageView Add Image
UIIMageView Add Image "initWithImage" is a image declaring method that is used to declare the image while while creating a UIImageView. Syntax... = [[[UIImageView alloc] initWithImage:one] autorelease]; //to add image on view
detect tap on uiimageview
detect tap on uiimageview  detect tap on uiimageview UIScrollView. Thanks
UIScrollView Height
UIScrollView Height  How can i set the height and width of the UIScrollView according to my requirement. Actually i'm creating a login application form iPhone and using UIScrollView. Also i have number of item to add
UIImageView Collision Detection
UIImageView Collision Detection  Is there any way to detect UIImageView Collisions in Objective C? Thanks
UIImageView set Image URL
UIImageView set Image URL  Show image by URL   UIImageView set image url Create NSURL object and add the Image URL to it. Create NSData and add the NSURL object to it. Now, create UIImage and pass the NSData value
uiscrollview background color
uiscrollview background color  Is it possible to set the uiscrollview background color in iPhone application
uiscrollview setcontentoffset animated
uiscrollview setcontentoffset animated  Hi, What is actual code to call uiscrollview setcontentoffset animated method? Thanks   Hi, Here...   when and where i should use setcontentoffset UIScrollView
UIScrollView Toolbar problem
and drop the uiscrollview set the length as 320*460 Now, add the UIToolBar...UIScrollView Toolbar problem  Hi, I am creating a UINavigation based... or viewWillApear method just add the given lines of code. CGRect scrollFrame
uiscrollview remove all subviews
uiscrollview remove all subviews  Hi, How to remove all elements from uiscrollview. I need code for uiscrollview remove all subviews. Thanks   Hi, You can use following code in your program to remove all sub childs
UIScrollView Example iPhone
UIScrollView Example iPhone UIScrollView is the superclass of several... need UIScrollView when our text length or form size is larger then the actual... out how to add scroll view to your application. You can accomplish
add imageview to uiview
:[UIImage imageNamed:@"imageName.png"]];    You need to add a UIImageView to UIView Add an Image or Image URL to your ImageView. Code: UIImageView...add imageview to uiview  i want to add an image to UIView background
add
How to add two int numbers in Java Example  How to add two int numbers in Java Example  Here is a java example that accepts two integer from the user and find their sum. import java.util.*; class AddNumbers
add
Java Example to add two numbers  Java Example to add two numbers  Here is a java example that accepts two integer from the user and find their sum. import java.util.*; class AddNumbers { public static void main
add
Java Program to add two numbers  Java Program to add two numbers  Here is a java example that accepts two integer from the user and find their sum. import java.util.*; class AddNumbers { public static void main
add
How to add two numbers in Java  add two number   Here is a java example that accepts two integer from the user and find their sum. import java.util.*; class AddNumbers { public static void main(String[] args
add
add two no in Java  Java Add Example that accepts two integer from the user and find their sum  Here is a java example that accepts two integer from the user and find their sum. import java.util.*; class AddNumbers
add
Add Employee
Add Employee  coding for adding an employee
add to cart
add to cart  sir, i want to do add to cart to my shopping application each user using sessions. Plz help thnaks in advance
How to add
How to add   Hi, I want to make a website which will recommend users books according to the genre selected by them. I am using PHP, JavaScript and mySQL. The problem is that there will me almost more than 100 books
Add a fram
Add a fram  I want to put an image on frame on my GUI(Net Beans).please tell me the way to put this. only for frame.. thanks and regards, Rahul Dubey   Here is an example that displays an image on jframe. import
Add multiple UIBarButtonItem
Add multiple UIBarButtonItem  add multiple uibarbuttonitem
add uibarbuttonitem to uinavigationbar
add uibarbuttonitem to uinavigationbar  add uibarbuttonitem to uinavigationbar
add Buttons in JavaScript
add Buttons in JavaScript  How to add Buttons in JavaScript
sql add comment to column
sql add comment to column  Sql query to add comments to column
add new package java
add new package java  How to add new package in Java
uinavigationcontroller add multiple buttons
uinavigationcontroller add multiple buttons  How to add multiple buttons to the UINavigationController
how to add to numbers in java
how to add to numbers in java  how to add to numbers in java
How to add JTable in JPanel
How to add JTable in JPanel  How to add JTable in JPanel
how to add dynamic data
how to add dynamic data  how to add dynamic data to an existing web application
add a property to instance variable
add a property to instance variable  How to add a property to instance variable in iPhone SDK
Sql add columns
Sql add columns  How to add columns before existing columns. please help me out
how to add mulitiple projections
how to add mulitiple projections  how to add mulitiple projections and return them
ModuleNotFoundError: No module named 'add'
ModuleNotFoundError: No module named 'add'  Hi, My Python program is throwing following error: ModuleNotFoundError: No module named 'add' How to remove the ModuleNotFoundError: No module named 'add' error
ADD ROW - JSP-Servlet
ADD ROW  Hi Sir, How to use add row and delete row concept in jsp .  Hi Friend, Please visit the following link: http://www.roseindia.net/jsp/add-element.shtml Thanks
How to add BigDecimal in Java?
How to add BigDecimal in Java?  Hi, I have two BigDecimal variables. I want to add these two values. How to add BigDecimal in Java? Thanks   Hello, I will show you how you can add two BigDecimal? Suppose you have
Add as a friend - JSP-Servlet
Add as a friend  in chat project how we send a request to add as a friend and how other peaple add me in his friend list. i want jsp-servlet and java code also.\plz.. help me on this topic
how to add a file in GZIP
how to add a file in GZIP  Hi, how to add a file in GZIP using Java.   Hi, I have found a good referral site for How to Add a file in GZIP file format using Java. http://www.roseindia.net/java/examples/io
Add a root element
Add a root element  i have one doubt, This is my current xml doc. â?¦ But I want add a tag at first and last line of a xml by using JDOM(SAX Builder). Like â
Add UITabbarController to a View
Add UITabbarController to a View  How to add a UITabbarController to UIView in iPhone SDK?   iPhone TabBar Application Tutorial   iPhone TabBar Application Tutorial
add XMl to JTable
add XMl to JTable  Hi.. i saw the program of adding add XMl to JTable using DOM parser,but i need to do that in JAXB ,is it possible to do? help me
add google map javascript
add google map javascript  How can i add google map using javascript in my web page?   Search for the " Google Maps Javascript API" it will allow you to embed the Google Map into your web Page
add a UIButton to UINavigationBar
add a UIButton to UINavigationBar  In any new iPhone Navigation Based application, how can we add a UIButton to UINavigationBar?   UINavigationBar only accepts UIBarButtonItems ..so, see the code below to add
add image in a row of table
add image in a row of table  i have a table in which i have to add image in its row.i am trying to add the image with the help of label i.e i have a label in which instead of passing text i have inserted image using
add image in a row of table
add image in a row of table  i have a table in which i have to add image in its row.i am trying to add the image with the help of label i.e i have a label in which instead of passing text i have inserted image using
Add Date Time together
Add Date Time together  I want to add datetime with time and result must be datetime. i am unable to do please help me in php mysql but i need... second text box and add both the text box means datetime with time
remove and add div jquery
remove and add div jquery  I want to enable my users to remove or add DIV using JQuery.   $('.add_more').click(function(){ var description = $('#description').val(); $newEl = $('<div class="description_text

Ads