例如:
// ClassA.h
#import "ClassB.h"
@interface ClassA : NSObject
@property (nonatomic, readonly, strong) ClassB *classB;
@end
// ClassB.h
@interface ClassB : NSObject
@property (assign) CGFloat someProperty;
@end
// main.m
#import "ClassA.h"
...
ClassA *classA = [ClassA new];
classA.classB.someProperty
...
我想访问
someProperty
中的classA.classB.someProperty
之类的main.m
,所以我必须在ClassB.h
头文件中导入ClassA
。但是我只想在main.m
中访问ClassB的属性或方法,我想禁止用户在main.m
中创建 ClassB 对象。我该怎么办?
// main.m
classA.classB.someProperty --> ok
ClassB *classB = [ClassB new] --> forbid
最佳答案
如果要通过classB
获取classA
的属性,则必须导入ClassA
。
编辑
如果不想在classB
中创建main.m
,则应在classA.m
中导入ClassB.h
,而不在classA.h
中导入。
演示
我创建2个控制器类:ViewController
和ViewController2
:
在ViewController.h中:
#import <UIKit/UIKit.h>
// Forward declare ViewController2, instead of importing it.
// This way it will be visible for your header file, but will get error if trying to create a instance of it
@class ViewController2;
@interface ViewController : UIViewController
@property (nonatomic, strong, readwrite) ViewController2 *vc2;
@end
在ViewController.m中:
#import "ViewController.h"
#import "ViewController2.h"
@interface ViewController ()
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
self.vc2 = [[ViewController2 alloc] init];
}
@end
关于ios - 如何在iOS中访问对象(只读)的属性,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41285278/