xcode 4でiOSアプリを作成してUIScrollView
いて、ボタンとを含むを作成する必要がありますUIImageView
。誰かがこれをコーディングする方法を知っていますか?
(可能であれば、ストーリーボードでこれを実行できるようにしたいと思います)
ありがとう
xcode 4でiOSアプリを作成してUIScrollView
いて、ボタンとを含むを作成する必要がありますUIImageView
。誰かがこれをコーディングする方法を知っていますか?
(可能であれば、ストーリーボードでこれを実行できるようにしたいと思います)
ありがとう
方法で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];