NSLog print NSString example code


 

NSLog print NSString example code

In this example we will show you the code to print the NSString using NSLog function.

In this example we will show you the code to print the NSString using NSLog function.

Following example prints the value of NSString object on the console using the NSLog function which can be used to debug the iPhone application.

//
//  printString.h
//  DataTypes
//
// 

#import <Foundation/Foundation.h>  

@interface printString : NSObject

{

    NSString *string;   

}

-(void) print; 

@end

The implementation class code is as follows:

//
//  printString.m
//  DataTypes
//

#import "printString.h"

@implementation printString

-(void) print

{

    string= @"Welcome in Programming";

    NSLog(@"process Name: %@ Process ID: %d",string);

}

@end

 

Ads