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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T06:44:59+00:00 2026-06-16T06:44:59+00:00

I just started learning Objective-C yesterday, and i can’t quite figure out this warning:

  • 0

I just started learning Objective-C yesterday, and i can’t quite figure out this warning:

Property access result unused - getters should not be used for side effects

Using this code (line 3 gives the warning, self.addItem()):

- (BOOL)textFieldShouldReturn:(UITextField *)textField {
    if (textField == self.itemTxt) {
        self.addItem;
        self.itemTxt.text = @"";
    }
    return YES;
}

- (IBAction)addItem {
    [self.model addItemToArray: _itemTxt.text];
    _itemTxt.text = @"";
}

Why am I getting this warning?

  • 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-16T06:45:01+00:00Added an answer on June 16, 2026 at 6:45 am

    What is addItem. According to your code, it seems you’re trying to call that function so use this:

    [self addItem];
    

    One more thing basically, if you see in depth about IBAction, you’ll find it’s void. Normally, we use IBAction when we want to use IB for event fire.

    So, you can use(if you need to call manually)

    - (void)addItem {
        [self.model addItemToArray: _itemTxt.text];
        _itemTxt.text = @"";
    }
    

    Hope, it’ll enhance your knowledge and will assist in your warning.

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

Sidebar

Related Questions

I just started learning objective c. I have this little problems and questions, hope
Ok so I've just started learning java (I usually program in Objective-C). My first
I just started learning C but I don't understand this part of the code.
I've just started learning Objective-C. I'm doing one of the standard calculator exercises. It's
Just started learning Haskell. I have an empty source file with this inside: pe
Just started learning Rails (3). I am tearing my hair out trying to find
I just started learning Objective-C and OOP ... so I have very stupid question
I've just started learning Objective C and getting a bit stumped with arrays. Basically,
I have just started learning Objective-C, I am reading Programming in Objective-C 3rd Edition
I just recently started learning Objective C, when i run the next program i

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.