gpt4 book ai didi

iphone - UIPageControl 不响应触摸,不改变点

转载 作者:太空狗 更新时间:2023-10-30 03:39:10 27 4
gpt4 key购买 nike

我有一个 UIPageControl。当我点击一个点来改变页面时,没有任何反应。第二个点没有突出显示。

但是,当我滚动我的 UIScrollView 时,它工作正常。在这种情况下,第二个点会突出显示。

pageControl = [[UIPageControl alloc] init] ;
pageControl.center = CGPointMake(160.0f, 430.0f);
pageControl.numberOfPages=nPages;
pageControl.currentPage=0;
pageControl.hidesForSinglePage = YES;
pageControl.userInteractionEnabled =YES;

[pageControl addTarget:self action:@selector(pageTurn:) forControlEvents:UIControlEventValueChanged];

[self.view addSubview:pageControl];

这应该在我更改 pageControl 值时被调用,但它没有被调用,因为它不响应触摸。

- (void) pageTurn: (UIPageControl *) aPageControl
{
int whichPage = aPageControl.currentPage;
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:0.3f];
[UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
sv.contentOffset = CGPointMake(320.0f * whichPage, 0.0f);
[UIView commitAnimations];
}

最佳答案

设置页面控件的框架(宽度和高度)而不仅仅是中心,否则它的尺寸为零并且不响应触摸。

pageControl = [[UIPageControl alloc] 
initWithFrame:CGRectMake(100, 430, 200, 50)];
pageControl.center = CGPointMake(160.0f, 430.0f);

关于iphone - UIPageControl 不响应触摸,不改变点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4155608/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com