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 137597

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T07:07:52+00:00 2026-05-11T07:07:52+00:00

I have a simple method in my code which looks like the following: –

  • 0

I have a simple method in my code which looks like the following:

- (BOOL)isFirstTimeLogin  {     NSString *t_gName =      [NSString stringWithFormat:@'%@', [[NSUserDefaults standardUserDefaults] objectForKey:kGroupIdentifierKey]];     if ([t_gName isEqualToString:@''] || t_gName == nil) {         DLog(@'LoginViewController, m:::isFirstTimeLogin, First time login happening.');         return YES;     }      DLog(@'LoginViewController, m:::isFirstTimeLogin, Not a first time login.');     return NO; } 

Simply what this does is go to the Settings bundle, and retrieve a value from a PSTextFieldSpecifier. If I manually go in and add some arbitrary text, the code works as expected. However, whenever I first install the app on a new device, the first condition is executing as false, which it should be true. After stepping through the code, gdb proves that the object is indeed nil as well:

(gdb) po t_gName
(null)

What am I possibly doing wrong here? Why is it the condition is failing for the first time the app is installed and t_gName is an empty/null PSTextFieldSpecifier. I even went as far as trying to add a DefaultValue in my Settings bundle of an empty string.

  • 0 0 Answers
  • 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. 2026-05-11T07:07:53+00:00Added an answer on May 11, 2026 at 7:07 am
    [NSString stringWithFormat:@'%@', nil]; 

    This creates something like this:

    @'(null)' 

    and is therefore neither nil nor equal to @''.

    by the way

    1. You don’t need stringWithFormat: at all.
    2. Don’t check for string == nil but for !string
    3. You don’t have to check for an empty string, as there is one set or it’s nil.
    4. Use a better name than t_gName, there’s no reason for short names.

    Like this:

    - (BOOL)isFirstTimeLogin  {     NSString *groupIdentifier = [[NSUserDefaults standardUserDefaults]                                     objectForKey:kGroupIdentifierKey];     if (!groupIdentifier) {         DLog(@'First time login.');         return YES;     }      DLog(@'Not a first time login.');     return NO; } 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 225k
  • Answers 225k
  • 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 In addition to Noah's answer Xcode also compresses PNG files:… May 13, 2026 at 1:04 am
  • Editorial Team
    Editorial Team added an answer Since there is no order by you are not guaranteed… May 13, 2026 at 1:04 am
  • Editorial Team
    Editorial Team added an answer My compiler has wistringstream -- this is all it is:… May 13, 2026 at 1:04 am

Related Questions

I have a simple method in my code which looks like the following: -
Ok, I'm going crazy. I've been trying to make a simple .net assembly visible
I have finally got in my mind what worried me about Dependency Injection and
I'm attempting to create a custom calendar control that inherits from ASP.Net's built in
I refactor some classes from standard SQL to JPA/ORM usage. In most cases the

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.