如何以编程方式创建滚动视图

时间:2014-03-26 06:56:18

标签: ios objective-c

如何在Xcode中单击按钮时创建简单的滚动视图?

我已经分配了按钮,并按IBAction作为印刷, 要对此操作进行滚动视图的代码?

 -(IBAction)press
 {

 }

1 个答案:

答案 0 :(得分:0)

.h文件中,您必须将委托定义添加到类声明中 - 如下所示:

@interface someClass : NSObject <UIScrollViewDelegate>

.m写下这样的想法:

 -(IBAction)press
 {
    UIScrollView *_scrollView = [[UIScrollView alloc] initWithFrame:CGRectMake(0, 0, self.view.bounds.size.width, self.view.bounds.size.height)];
    _scrollView.backgroundColor = [UIColor clearColor];
    _scrollView.userInteractionEnabled = YES;
    _scrollView.delegate = nil;

    [self.view addSubview:self.scrollView];
}

这就是全部! :)