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