How to use Ios-nslog

Source: Internet
Author: User

Definition of NSLog

NSLog is defined in NSObjCRuntime.h as follows:

void NSLog (NSString *format, ...);

Basically, NSLog is much like printf, which also outputs the results in the console. The difference is that the formatted character passed in is a NSString object, not a string pointer such as Chat *.

Example

NSLog can be used in the following ways:

NSLog (@ "This is a Test");

NSLog (@ "string is:%@", string);

NSLog (@ "x=%d, y=%d", 10, 20);

But the following wording is not possible:

int i = 12345;

NSLog (@ "%@", I);

The reason is that%@ needs to display objects, and int i is obviously not an object, to be displayed correctly, write:

int i = 12345;

NSLog (@ "%d", I);

Format

The format of the NSLog is as follows:

  • %@ Object
  • %d,%i integer
  • %u no-character shaping
  • %f floating point/double word
  • %x,%x binary integer
  • %o Eight-binary integers
  • %zu size_t
  • %p pointer
  • %e floating point/double word (scientific calculation)
  • %g floating point/double word
  • %s C string
  • %.*s Pascal String
  • %c character
  • %c Unichar
  • %LLD 64-bit long integer
  • %llu 64-bit long integer without character
  • %LF 64-bit double word


How to use Ios-nslog

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.