私は、Objective-C での iOS 開発とプログラミングに非常に慣れていません。アプリ開発ライブラリで演習を行っています。
これは、私が理解しようとしている現在の演習です。3. 変更可能な文字列を個人の名として設定し、変更した sayHello メソッドを呼び出す前にその文字列を変更するとどうなるかをテストします。copy 属性を追加して NSString プロパティ宣言を変更し、再度テストします。
私はこれをしようとしましたが、変更した NSString は実際には copy プロパティ属性の使用にもかかわらず変更されます。
ここに、私の宣言と実装、およびテスト コードを示します。
XYZPerson.h
#import <Foundation/Foundation.h>
@interface XYZPerson : NSObject
@property (copy) NSString *firstName;
@property NSString *lastName;
@property NSDate *dob;
- (void)sayHello;
- (void)saySomething:(NSString *)greeting;
+ (id)init;
+ (id)personWithFirstName:(NSString *)firstName lastName:(NSString *)lastName dob:(NSDate *)dateOfBirth;
@end
//XYZPerson.m
#import "XYZPerson.h"
@implementation XYZPerson
@synthesize firstName = _firstName;
@synthesize lastName = _lastName;
@synthesize dob = _dob;
- (void)sayHello {
[self saySomething:@"Hello World!"];
NSLog(@"This is %@ %@", self.firstName, self.lastName);
}
- (void)saySomething:(NSString *)greeting {
NSLog(@"%@", greeting);
}
+ (id)init {
return [self personWithFirstName:@"Yorick" lastName:@"Robinson" dob:8/23/1990];
}
+ (id)personWithFirstName:(NSString *)firstName lastName:(NSString *)lastName dob:(NSDate *)dateOfBirth{
XYZPerson *person = [[self alloc] init];
person.firstName = firstName;
person.lastName = lastName;
person.dob = dateOfBirth;
return person;
}
@end
//Test code
#import <UIKit/UIKit.h>
#import "AppDelegate.h"
#import "XYZPerson.h"
#import "XYZShoutingPerson.h"
int main(int argc, char *argv[])
{
@autoreleasepool {
XYZPerson *guy = [XYZPerson init];
[guy sayHello];
//I thought that this change would never be made, but it is everytime I run the code.
guy.firstName = @"Darryl";
[guy sayHello];
XYZShoutingPerson *girl = [XYZShoutingPerson init];
[girl sayHello];
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
}
}