-1

首先看一下来自 localScope 应用程序的这张图片:

本地范围

我有 2 个(简单?)问题:

  1. 我怎样才能像这样对我的图标进行分页?

  2. 我如何检测女巫图标被“选中”

谢谢你。

4

2 回答 2

1

回答第一个问题:您必须使滚动视图与页面大小一样大,启用其pagingEnabled属性,然后以某种方式使其显示元素并响应其边界之外的触摸。请参阅此代码和这些链接:

@interface SmallPagedScrollView: UIScrollView <UIScrollViewDelegate> {
    UIEdgeInsets responseInsets;
    NSMutableArray *items;
}

@implementation SmallPagedScrollView

@synthesize responseInsets;

- (id)init
{
if ((self = [super initWithFrame:CGRectMake(x, y, w, h)]))
{
    self.backgroundColor = [UIColor clearColor];
    self.pagingEnabled = YES;
    self.showsHorizontalScrollIndicator = NO;
    self.showsVerticalScrollIndicator = NO;
    self.clipsToBounds = NO;

    CGFloat hInset = 3 * self.width / 2;
    self.responseInsets = UIEdgeInsetsMake(0.0f, hInset, 0.0f, hInset);
    self.delegate = self;

    items = [[NSMutableArray alloc] init];
}
return self;
}

- (void)dealloc
{
[items release];
[super dealloc];
}

- (BOOL)pointInside:(CGPoint)point withEvent:(UIEvent *)event
{
CGPoint parentLocation = [self convertPoint:point toView:self.superview];
CGRect responseRect = self.frame;
responseRect.origin.x -= self.responseInsets.left;
responseRect.origin.y -= self.responseInsets.top;
responseRect.size.width += self.responseInsets.left + self.responseInsets.right;
responseRect.size.height += self.responseInsets.top + self.responseInsets.bottom;

return CGRectContainsPoint(responseRect, parentLocation);
}

另请参阅以小于帧大小的增量分页 UIScrollView(Split 的答案)

回答第二个问题:您可以使用以下公式计算所选页面:

int selectedIndex = (scrollView.contentOffset + scrollView.size.width / 2) / scrollView.size.width;
于 2012-07-05T17:37:10.397 回答
0

一种干净且高效的内存方法是拥有一个UINavigationController&UIToolBar像这样 -

在此处输入图像描述

当用户通过弹出并按下它们来点击UIToolBar调用中的任何按钮时。viewController

我希望可以清楚地看到外观和感觉可以接近您在图像中显示的内容,我说的是功能。

于 2012-07-05T17:32:07.157 回答