OpenFlow触摸事件图像

时间:2010-10-07 07:00:31

标签: iphone views uiimage touch-event

是否有人知道我可以在此代码中实现的解决方案, 可以触摸图片并开始活动吗?

- (void)viewDidLoad {
    [super viewDidLoad];

    // loading images into the queue

    loadImagesOperationQueue = [[NSOperationQueue alloc] init];

    NSString *imageName;
    for (int i=0; i < 10; i++) {
        imageName = [[NSString alloc] initWithFormat:@"cover_%d.jpg", i];
        imageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:imageName]];
        UIImage *aktuellesImage = imageView.image;
        UIImage *scaledImage = [aktuellesImage scaleToSize:CGSizeMake(100.0f, 100.0f)];
        [(AFOpenFlowView *)self.view setImage:scaledImage forIndex:i];
        [imageName release];
        [aktuellesImage release];       
    }
    [(AFOpenFlowView *)self.view setNumberOfImages:10];


}

我希望有人可以帮助我 抱歉我的英语不好:)

1 个答案:

答案 0 :(得分:1)

AFOpenFlowView.m方法中的

touchesBegan,touchMoves和touchEnded已被覆盖,因此只需为您的使用创建一个新的委托方法并调整这些方法。