gpt4 book ai didi

ios - 覆盖 super View 中元素的大小?

转载 作者:行者123 更新时间:2023-11-29 00:21:31 24 4
gpt4 key购买 nike

我的父类(super class)中有一个 ScrollView ,我想在该父类(super class)的子类 View 之一中覆盖它的大小。

我正在使用以下 Init,但我在父级中选择 ScrollView 的语法是错误的并引发错误,我在哪里出错了?

scrollView 位于父 View 中,我想调整其在 super View 中设置的框架的大小

    - (id)initWithFrame:(CGRect)frame {
self = [super initWithFrame:frame];
if (self) {
[super scrollView]; CGRectMake(50, 0, self.width - 50, self.height);
[self setControlArray:[NSMutableArray new]];
[self setBusOffset:1];
[self addBusToView];
[self addBusNavigationToView];
}
return self;
}

错误是

Property 'frame' cannot be found in forward class object 'CDCChannelScrollView'

我认为 .frame 不是编辑框架的正确访问器

最佳答案

答案是使用 setFrame:

[self.scrollView setFrame:CGRectMake(50, 0, self.width - 170, self.height)];

关于ios - 覆盖 super View 中元素的大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44110143/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com