程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> uiscrollview-為什麼我自己將UIScrollView 和 UIPageControl 組合的MyView 不能拖拽

uiscrollview-為什麼我自己將UIScrollView 和 UIPageControl 組合的MyView 不能拖拽

編輯:編程綜合問答
為什麼我自己將UIScrollView 和 UIPageControl 組合的MyView 不能拖拽

我自定義的MyView

  • (instancetype)initWithImageList:(NSArray*) imgArr andFrame:(CGRect) frame { self = [super init]; self.userInteractionEnabled = YES; if (self) { [self createScrollView:imgArr andFrame:frame]; [self createPageControl:imgArr andFrame:CGRectMake(0, frame.size.height-40, frame.size.width, 30)];//創建pageController並且 設置位置 } return self; }

-(void) createScrollView:(NSArray*) imgArr andFrame:(CGRect) frame
{
self.scrollView = [[UIScrollView alloc] initWithFrame:CGRectMake(0, 0, frame.size.width, frame.size.height)];
self.scrollView.contentSize = CGSizeMake(frame.size.width*(imgArr.count+2), frame.size.height);//多加2個圖片的寬度
self.scrollView.pagingEnabled = YES;
self.scrollView.scrollEnabled = YES;
self.scrollView.userInteractionEnabled = YES;
int count = imgArr.count+1;
for (int i = -1; i < count; i++) {
UIImageView *imgV = [[UIImageView alloc] initWithFrame:CGRectMake(frame.size.width*i, 0, frame.size.width, frame.size.height)];
imgV.userInteractionEnabled = YES;
if(i==-1)
{
imgV.image= [UIImage imageNamed:imgArr[imgArr.count-1]];//增加最後一張圖片作為第一個滾動的圖片 實現無縫
}
else if (i==imgArr.count)
{
imgV.image= [UIImage imageNamed:imgArr[0]];//增加第一張圖片作為最後一個滾動的圖片 實現無縫
}
else
{
imgV.image= [UIImage imageNamed:imgArr[i]];
}
[self.scrollView addSubview:imgV];
}

[self addSubview:self.scrollView];

}

-(void) createPageControl:(NSArray*) imgArr andFrame:(CGRect) frame
{
self.pageControl = [[UIPageControl alloc] initWithFrame:frame];
self.pageControl.numberOfPages = imgArr.count;
self.pageControl.currentPage = 0;
[self addSubview:self.pageControl];
}

在UIViewController裡面 我是這麼寫的

  • (void)viewDidLoad { [super viewDidLoad]; NSArray *imgArr = @[@"welcome_01.png",@"welcome_02.png",@"welcome_03.png",@"welcome_04.png"]; self.scrollView = [[ScrollPageView alloc] initWithImageList:imgArr andFrame: CGRectMake(0, 0, [UIScreen mainScreen].bounds.size.width, [UIScreen mainScreen].bounds.size.height)]; [self.view addSubview:self.scrollView]; // Do any additional setup after loading the view, typically from a nib. }

最佳回答:


是我自己有點呆了 在初始化的時候 沒加上 self.frame = frame;

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