スクロールビューでlazyimageloadingで画像を表示するにはどうすればよいですか
xview = 21;//30
yview = 21;
yscroll = 150;//200
h=1;
NSLog(@"arr count %d",[filelistarr count]);
for(int s=0;s<[filelistarr count];s++)
{
obj=[filelistarr objectAtIndex:s];
scrollview.contentSize=CGSizeMake(320, yscroll);
if(h%4 == 0)
{
xview=21;
h=1;
yview=yview+120;
//yscroll=yscroll+20;
}
imgbtn = [UIButton buttonWithType:UIButtonTypeCustom];
imgbtn.frame = CGRectMake(xview, yview, 80, 80);
imgbtn.layer.borderWidth = 0;
imgbtn.layer.borderColor = [[UIColor blackColor] CGColor];
imgbtn.tag=(s+1);
}
- 画像設定ボタンは正しくありますが、遅延画像読み込みを設定する方法を教えてください....