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 9256787
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T12:02:09+00:00 2026-06-18T12:02:09+00:00

I am just learning objective-c so my problem might be a simple one. I

  • 0

I am just learning objective-c so my problem might be a simple one. I am creating a simple game that has a label used to keep track of the player’s score. The game play works fine and there is no problem computing the score. The problem occurs when I set the label’s text property to the value stored in my score variable.

score += (int)someFloatValue;
NSString *scoreText = [NSString stringWithFormat:@"%i", score];
scoreLabel.text = scoreText;

In my game loop, I am always setting this text. So even before the score goes past zero, I am constantly setting the text to a value of zero. No problems so far. As soon as the player scores a point, the value in my score variable changes. Still no problem. But, when I update the label’s text with the new score, the locations of all my UI elements get reset back to the location initially set in interface builder. No crashes. And the score gets shown properly in the label. Just every UI element gets moved.

Not sure if any of this is helpful, but I think I set up everything right:

h file:

@interface ViewController : UIViewController{
    UILabel *scoreLabel;
    NSInteger score;
}

@property (nonatomic, retain) IBOutlet UILabel *scoreLabel;
@property (nonatomic) NSInteger score;

m file:

@interface ViewController ()

@end

@synthesize scoreLabel;
@synthesize score;
  • 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-06-18T12:02:11+00:00Added an answer on June 18, 2026 at 12:02 pm

    Be sure to turn off Auto Layout, if you are moving around UI elements in code and not setting up constraints in IB.

    Remove autolayout (constraints) in Interface Builder

    Also, you could simplify that code like this (although it’s fine as is):

    scoreLabel.text = [NSString stringWithFormat:@"%i", score];
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm learning objective-c ( via apple ) and just finished up the portion that
I've just started learning Objective-C. I'm doing one of the standard calculator exercises. It's
I have started learning Objective-C, and I just wanted to verify that my understanding
I've just started learning Objective-C and made a little compass app that will display
I'm just learning objective-c after a fair amount of experience with C#. One of
Ok so I've just started learning java (I usually program in Objective-C). My first
Just learning Silverlight 4/RIA and i 'm stuck in a weird problem: setup an
I'm just learning nHibernate and have come across what probably is a simple issue
I'm just learning some basic programming in Objective C and Cocoa. I'm trying to
I am just learning objective-c but can't figure out whats wrong with my code

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.