Objective-C NSLog

Objective-C NSLog

// 定义一个字符串
    NSString *str = @"hi, jzh";
    // 内存地址,变量
    NSLog(@"str的地址=%p, str的值=%@", str, str);
    // 打印OC字符串要用@""
    NSLog(@"hi");

 

发表回复

您的电子邮箱地址不会被公开。