Home Tutorial Iphone Examples Nslog Printing the String value using NSLog function

 
 

Printing the String value using NSLog function
Posted on: July 29, 2009 at 12:00 AM
In this section you will learn how you can print the value of NSString using the NSLog function.

In this section you will learn how you can print the value of NSString using the NSLog function.

In the following code example we will show you how you can easily output the value of NSString variable using the NSLog function.

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

#import <Foundation/Foundation.h>  

@interface printString : NSObject

{

    NSString *string;   

}

-(void) print; 

@end

and the code of implementation class 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 Printing the String value using NSLog function:


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.