Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 708601
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T04:24:34+00:00 2026-05-14T04:24:34+00:00

I am trying to load an NSMutableArray with UIImageViews. Everything is going fine with

  • 0

I am trying to load an NSMutableArray with UIImageViews. Everything is going fine with that.

Unfortunately, I have no idea how to use the objects when they are in the mutable array.

Here is some code:

UIImageView *imageView = [[UIImageView alloc] initWithImage:image];
NSMutableArray *array = [NSMutableArray new];
[array loadWithObject:(UIImageView *)imageView];
[imageView release];

That kind of sets up what I’ve done. Here’s what I want to do:

[array objectAtIndex:5].center = GCRectMake(0, 0);

but that doesn’t work. How can I do this??

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-14T04:24:34+00:00Added an answer on May 14, 2026 at 4:24 am

    OK, I’ll explain the problems you’re having. The way to do what you are trying to do is the following:

    UIImageView *imageView = [[UIImageView alloc] initWithImage:image];
    NSArray *array = [NSArray arrayWithObject:imageView];
    [imageView release];
    [[array objectAtIndex:0] setCenter:CGPointMake(0.0,0.0)];
    

    First, there is no method -[NSMutableArray loadWithObject:]. Likewise, for your example, you don’t really even need a mutable array. Mutable objects have their place, but I usually try to use immutable ones when it makes sense to; as such, I’ve used NSArray.

    Next, you never need to typecast objects when you’re adding them to an array. There are a few reasons wherefore your example didn’t work:

    1. You were accessing the sixth (starting at one) object in the array. Was there an instance of UIImageView at that index?

    2. For some reason, dot-notation for getters and setters only works when the compiler knows the type of the object you’re sending a message to. Since the type of an object that is coming out of an array is not clear at compile-time, you can’t use dot-notation. Instead, just use old-fashioned Objective-C method-sending syntax (“brackets and colons”).

    3. Finally, it’s Core Graphics, not Gore Craphics: hence the prefix is CG, not GC. Also, -[UIImageView setCenter:] takes a CGPoint, not CGRect. So the function you wanted was CGPointMake.

    Best of luck to you! Let me know if this helps clear some things up.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 357k
  • Answers 357k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer You probably want to call setlocale() first, "LC_ALL" should do… May 14, 2026 at 9:06 am
  • Editorial Team
    Editorial Team added an answer Linux Ubuntu Desktop Jaunty Firebug FireCookie Pixel Perfect Web developer… May 14, 2026 at 9:06 am
  • Editorial Team
    Editorial Team added an answer Your code should look like this: var par = [];… May 14, 2026 at 9:06 am

Related Questions

I am trying to load an xml file that is stored as a resource
I am trying to load an image in the background and then update the
I am trying to load an XML file from a different domain name as
I am trying to load an XML file into a tree view control, edit
I am trying to load an Excel 97 single tabbed spreadsheet into a SQL

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.