Slide 2
Slide 2 text
Headers
and
Implementa&ons
#import
@interface PPlace : NSObject {
}
@property (nonatomic) NSUInteger placeId;
@property (nonatomic, copy) NSString *name;
@property (nonatomic, copy) NSString *address;
- (void) findPlace:(NSString *)searchText;
@end
#import "PPlace.h"
@implementation PPlace
@synthesize placeId;
@synthesize name;
@synthesize address;
- (void) findPlace:(NSString *)searchText
{
// do something
}
@end
PPlace.h
PPlace.m