程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> ios-添加圖片到scrollveiw不成功

ios-添加圖片到scrollveiw不成功

編輯:編程綜合問答
添加圖片到scrollveiw不成功

為什麼我用下面的代碼添加圖片到UIscrollView不成功?顯示的是一個空白屏幕。

UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(self.scrollView.frame.size.width * 1, 0, self.scrollView.frame.size.width, self.scrollView.frame.size.height)];
    imageView.backgroundColor = [UIColor redColor];
    [imageView setImage:[UIImage imageNamed:@"placeholder.png"]];
    [self.scrollView addSubview:imageView];
    self.scrollView.contentSize = CGSizeMake(self.scrollView.frame.size.width * self.urlArray.count, self.scrollView.frame.size.height);

最佳回答:


UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, self.scrollView.frame.size.width, self.scrollView.frame.size.height)];

要給 UIScrollView 添加合適的 contentSize ,還有給 UIView 添加 UIScrollView

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved