0

我想这会很受欢迎,但我开始感到非常沮丧:我是第一次编写代码,所以请帮忙。使用 X-Code,objective-C。

我希望能够在我的 App-Pages 上滚动,所以我添加了一个 UIScrollView:

@interface HeggViewController : UIViewController
{
IBOutlet UIScrollView *scroller;

}

@implementation HeggViewController

- (void)viewDidLoad
{
[scroller setScrollEnabled:YES];
[scroller setContentSize:CGSizeMake(320, 1000)];
[super viewDidLoad];

它工作正常,直到我添加一些东西。按钮,图片,标签......我可以在 ScrollView 中添加按钮还是需要先放置其他东西

我做错了什么?

谢谢您的帮助..

4

1 回答 1

0

您没有显示添加对象的代码,但如果您执行以下操作,它必须可以正常工作:

// Create your image
UIImageView *image = [[UIImageView alloc]initWithFrame:CGRectMake(79, 20, 100, 100)];
// Add the image to the scrollview
[scroller addSubview:image];
于 2013-05-21T17:28:34.383 回答