Objectice-C log information

Source: Internet
Author: User

NSLog is used in Objectice-C to output log information. The biggest difference between Objectice-C and C is that "fox" and @ "fox ", a c string is a pointer to a byte string, and an NSString (starting with @) is an object. The method for operating the C string is to modify the value saved in each byte. NSString strings are unchangeable. You cannot access each byte and edit them. In addition, the actual string data is not stored in the object.

NSString * fox = @ "fox ";
Printf ("Hello: % s \ n", [fox UTF8String]);
NSLog ("Hello: % @", fox); // introduce the object descriptor % @ in NSLog for output objects.

Common string formats:

% @ Object

% "%" Text character
% D, % I integer
% U unsigned integer
% F floating point/double-Character
% X, % X binary integer
% O octal integer
% Zu size_t
% P pointer
% E floating point/double-character (Scientific Computing)
% G floating point/double-Character
% S C string
%. * S Pascal string
% C characters
% C unichar
% Lld 64-bit long integer (long)
% Llu unsigned 64-bit long integer
% Lf 64-bit dual-Character

Another useful logging function is CFShow (). It uses an object as a parameter to output the snapshot description of the object to stderr.

CFShow (fox );

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.