0

xcode 4でiOSアプリを作成してUIScrollViewいて、ボタンとを含むを作成する必要がありますUIImageView。誰かがこれをコーディングする方法を知っていますか?

(可能であれば、ストーリーボードでこれを実行できるようにしたいと思います)

ありがとう

4

1 に答える 1

9

方法でViewDidLoad

//ScrollViewを追加します

UIScrollView *scrollview=[[UIScrollView alloc]initWithFrame:CGRectMake(0,0,320,480)]; 
scrollview.showsVerticalScrollIndicator=YES;
scrollview.scrollEnabled=YES;
scrollview.userInteractionEnabled=YES;
[self.view addSubview:scrollview];
scrollview.contentSize = CGSizeMake(320,960);//You Can Edit this with your requirement 

//ボタンを追加

UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
[button addTarget:self  action:@selector(aMethod:) forControlEvents:UIControlEventTouchDown];
[button setTitle:@"Show View" forState:UIControlStateNormal];
button.frame = CGRectMake(80.0, 210.0, 160.0, 40.0);
[scrollview addSubview:button];

//ImageViewを追加します

UIImageView*   iv =[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"yourPhoto.png"]];
iv.frame=CGRectMake(0, 0, 40,60);
[scrollview addSubview:iv];
于 2012-10-14T06:27:21.673 に答える