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

  • Home
  • SEARCH
  • 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 8538059
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T11:03:19+00:00 2026-06-11T11:03:19+00:00

I have an object w/ an NSString for a property. I would like to

  • 0

I have an object w/ an NSString for a property. I would like to use a custom setter for this property so that it always trims all whitespace when the string is set.

Normally this is done with NSString *blah2 = [blah stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]];, but I’m not sure about how to formulate this for a custom setter. Isn’t it bad to use autoreleased objects like this in the setter? Should I use a mutable string instead and then convert it to unmutable?

Thanks for any help you guys can provide.

  • 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-11T11:03:21+00:00Added an answer on June 11, 2026 at 11:03 am

    I’m going to presume ARC.

    #import <Foundation/Foundation.h>
    
    @interface Foo:NSObject
    @property (nonatomic,copy) NSString *myString;
    @end
    
    @implementation Foo
    @synthesize myString = _myString;
    
    - (void)setMyString:(NSString *)aString;
    {
        _myString = [[aString stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]] copy];
    }
    
    @end
    
    int main(int argc, char *argv[]) {
        @autoreleasepool {
            Foo *someFoo = [[Foo alloc] init];
            someFoo.myString = @"Blah     ";
            NSLog(@"Length = %ld",[[someFoo myString] length]);  // prints 4
        }
    }
    

    In the setter, I do copy the parameter of the setter in the event someone tries to provide an instance of NSMutableString – presuming that Foo is not expected to modify the original string.

    EDIT:
    Or if manual reference counting, the setter might be:

    - (void)setMyString:(NSString *)aString;
    {
        if( aString != _myString ) {
            [_myString release];
            _myString = [[aString stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]] copy];
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i have an NSArray which contains custom objects, the objects have an NSString property,
I have a NSString object having multiple conditions specified in it like below: NSString
I have to use scanf() for accepting name of user in NSString object. If
I have a UITableView that displays various nsstrings from a custom object called a
I have a custom slider-type object, that I wish to make more usable. Currently
I would like to use JSON in my application, i have not never use
I have a local html file I would like to use as a template
I have a NSMutableArray property in my AppDelegate called blocks. I would like to
I have the following object: @interface SomeObject : NSObject { NSString *title; } @property
I have a NSArrayController with following Object: @interface AdressCard : NSObject <NSCoding> { NSString*

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.