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

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.

  • 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. 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

Related Questions

I have some code that looks like the following. First I have some domain
I have some very simple code to generate an assembly and invoke a method
My problem is the following. I have a method which simply takes an XML
So I have a class that looks something like the following: public class MyClass
Simple question. I have the following HTML: <a rel=nofollow id=claim-job-link data-method=post class=button green claim-job
I have a simple setter method for a property and null is not appropriate
I have a simple extension method on the int type so I can do
I am posting a very simple form using a method I have used frequently
I have code which issues many HTTP GET requests using Python's urllib2, in several
I have a really simple class with two methods; One that will be called

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.