私は1つのスクロールビューを持っており、その中でforループで動的に画像を表示しています...今、スクロールビューの画像をその境界線で作成したいと思っています..私はこのxcode環境でまったく新しい.私のコードは次のとおりです
scr.contentSize = CGSizeMake(0, 0);
for(int i=1;i<6;i++)
{
UIImageView *image = [[UIImageView alloc] initWithFrame:CGRectMake(x+0, 0, 320, 460)];
[image setImage:[UIImage imageNamed:[NSString stringWithFormat:@"n5%d.png",i]]];
[scr addSubview:image];
x+=320;
UITapGestureRecognizer *tapGesture = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(handleSingleTap:)];
tapGesture.numberOfTapsRequired = 1;
tapGesture.delegate = self;
image.userInteractionEnabled = YES;
[image addGestureRecognizer:tapGesture];
}
_detailDescriptionLabel.text=@"Bhavik";
[self.view addSubview:scr];
self.title=@"krish";
scr.pagingEnabled=YES;
scr.contentSize = CGSizeMake(320*5, 300);
誰かが私にいくつかの説明を提案してくれるので、将来的にも役立ちます..