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
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.