Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
#import <Foundation/Foundation.h>
@interface AddressCard : NSObject <NSCopying, NSCoding> {
NSString *name;
NSString *email;
}
@property (nonatomic, copy) NSString *name, *email;
-(void) setName: (NSString *) theName andEmail: (NSString *) theEmail;
-(void) retainName: (NSString *) theName andEmail: (NSString *) theEmail;
-(NSComparisonResult) compareNames: (id) element;
-(void) print;
@end