初始化一个只读属性

本文详细介绍了如何在Objective-C中通过直接赋值或私有类扩展来灵活地控制属性的读写性,特别强调了在不同场景下使用这些方法的重要性,并提供了实例代码来辅助理解。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Either assign to the instance variable directly (don't forget to add a retain orcopy if you need it) or redeclare the property in a private class extension. Like this:

In your .h file:

@property (readonly, copy) NSString *firstName;

In your .m file:

@interface MyClass ()

// Redeclare property as readwrite
@property (readwrite, copy) NSString *firstName;

@end


@implementation MyClass

@synthesize firstName;
...
Now you can use the synthesized setter in your implementation but the class interface still shows the property as readonly. Note that other classes that import your .h file can still call-[MyClass setFirstName:] but they won't know that it exists and will get a compiler warning


another

In your .h file:

@property (readonly, copy)NSString*firstName;

@interface MyClass ()
@synthesize firstName  = _firstName;

@end


only can you use _fisrtName to init
 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值