OStack程序员社区-中国程序员成长平台

标题: ios - 如何在 iOS 中访问对象(只读)的属性 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-12 23:20
标题: ios - 如何在 iOS 中访问对象(只读)的属性

例如:

// 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
...

我想像main.m中的classA.classB.someProperty一样访问someProperty,所以我必须导入ClassB。 hClassA 头文件中。但是我只想在main.m中访问ClassB的属性或方法,我想禁止用户在main.m中创建ClassB对象. 我该怎么办?

// main.m
classA.classB.someProperty --> ok
ClassB *classB = [ClassB new] --> forbid



Best Answer-推荐答案


如果要通过classA获取classB的属性,则必须导入ClassA

编辑

如果你不想在main.m中创建classB,你应该在你的classA.m中导入ClassB。 h 不在 classA.h 中。

演示

我创建了 2 个 Controller 类:ViewControllerViewController2:

在 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/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4