在openFlow Library中自定义图像视图

时间:2011-05-11 11:05:08

标签: iphone objective-c

我必须在我的iphone项目中使用openFlow库。如果有人使用openFlow库知道图像进来了。我想问是否可以自定义图像视图,因为我想要添加图像分享和+按钮,用于扩展和缩小流入的图像。

任何建议都将不胜感激

2 个答案:

答案 0 :(得分:2)

你的问题解决了吗?如果没有,那么你可以使用一个棘手的方式。在显示Cover Flow的主屏幕上,根据封面流图像视图添加uibutton并设置框架。并设置了这个事件。

可能它解决了你的问题。

THX

答案 1 :(得分:1)

在“AFItemview.m”方法“initWithFrame”中添加图像视图,添加一个按钮,如下所示:

- (id)initWithFrame:(CGRect)frame {
    if (self = [super initWithFrame:frame]) {
        self.opaque = YES;
        self.backgroundColor = NULL;
        verticalPosition = 0;
        horizontalPosition = 0;

        // Image View
        imageView = [[UIImageView alloc] initWithFrame:frame];
        imageView.opaque = YES;
        [self addSubview:imageView];

        UIButton *Btn = [UIButton buttonWithType:UIButtonTypeRoundedRect];
        Btn.frame = CGRectMake(10,10,50,50);
        [Btn setTitle:@"Button" forState:UIControlStateNormal];
        [self addSubview:Btn];

    }

    return self;
}

由于