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

StackOverflow Point

StackOverflow Point Navigation

  • Web Stories
  • Badges
  • Tags
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Web Stories
  • Badges
  • Tags
Home/ Questions/Q 241316
Next
Alex Hales
  • 0
Alex HalesTeacher
Asked: August 10, 20222022-08-10T04:15:11+00:00 2022-08-10T04:15:11+00:00In: C, debugging, iPhone, Objective-C

NSLog the method name with Objective-C in iPhone

  • 0

[ad_1]

NSLog( @"ERROR %@ METHOD %s:%d ", @"DescriptionGoesHere", __func__, __LINE__ );

Apple has a Technical Q&A page: QA1669 – How can I add context information – such as the current method or line number – to my logging statements?

To assist with logging:

  • The C preprocessor provides a few macros.
  • Objective-C provides expressions (methods).
    • Pass the implicit argument for the current method’s selector: _cmd

As other answers indicated, to merely get the current method’s name, call:

NSStringFromSelector(_cmd)

To get the current method name and current line number, use these two macros __func__ and __LINE__ as seen here:

NSLog(@"%s:%d someObject=%@", __func__, __LINE__, someObject);

Another example… Snippets of code I keep in Xcode’s Code Snippet Library:

NSLog( @"ERROR %@ METHOD %s:%d ", @"DescriptionGoesHere", __func__, __LINE__ );

…and TRACE instead of ERROR…

NSLog( @"TRACE %@ METHOD %s:%d ", @"DescriptionGoesHere", __func__, __LINE__ );

…and a longer one using a soft-coded description passing a value ([rows count])…

NSLog( @"TRACE %@ METHOD %s:%d.", [NSString stringWithFormat:@"'Table of Contents.txt' file's count of Linefeed-delimited rows: %u.", [rows count]] , __func__, __LINE__ );

Note the use of a pair of underscore characters around both sides of the macro.

| Macro                | Format   | Description
  __func__               %s         Current function signature
  __LINE__               %d         Current line number
  __FILE__               %s         Full path to source file
  __PRETTY_FUNCTION__    %s         Like __func__, but includes verbose
                                    type information in C++ code. 
| Expression                       | Format   | Description
  NSStringFromSelector(_cmd)         %@         Name of the current selector
  NSStringFromClass([self class])    %@         Current object's class name
  [[NSString                         %@         Source code file name
    stringWithUTF8String:__FILE__]   
    lastPathComponent] 
  [NSThread callStackSymbols]        %@         NSArray of stack trace

Logging Frameworks

Some logging frameworks may help with getting current method or line number as well. I’m not sure, as I’ve used a great logging framework in Java (SLF4J + LogBack) but not Cocoa.

See this question for links to various Cocoa logging frameworks.

Name of Selector

If you have a Selector variable (a SEL), you can print its method name (“message”) in either of two ways as described by this Codec blog post:

  • Using Objective-C call to NSStringFromSelector:
    NSLog(@"%@", NSStringFromSelector(selector) );
  • Using straight C:
    NSLog(@"%s", selector );

This information drawn from the linked Apple doc page as of 2013-07-19. That page had been last updated 2011-10-04.

[ad_2]

  • 0 0 Answers
  • 7 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report
Leave an answer

Leave an answer
Cancel reply

Browse

Sidebar

Ask A Question

Related Questions

  • xcode - Can you build dynamic libraries for iOS and ...

    • 0 Answers
  • bash - How to check if a process id (PID) ...

    • 396 Answers
  • database - Oracle: Changing VARCHAR2 column to CLOB

    • 370 Answers
  • What's the difference between HEAD, working tree and index, in ...

    • 361 Answers
  • Amazon EC2 Free tier - how many instances can I ...

    • 0 Answers

Stats

  • Questions : 43k

Subscribe

Login

Forgot Password?

Footer

Follow

© 2022 Stackoverflow Point. All Rights Reserved.

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.