Home Tutorial Iphone Examples Nslog NSLog print NSString example code

 
 

NSLog print NSString example code
Posted on: July 29, 2009 at 12:00 AM
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

 

Related Tags for NSLog print NSString example code:


Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.