iOS通过2类使用委托

时间:2012-11-23 10:28:07

标签: ios delegates

我有3个类:ListItem,ListPageView,ListViewController

当加载项目时,ListViewController中有代码:

ListPageView *pageView = [[ListPageView alloc] init];
pageView.delegate = self;
for(NSDictionary *_itemDetails in res)
{
    // khởi tạo item của list
    ListItem *item = [[ListItem alloc] initWithImage:[MEDIA_SERVER stringByAppendingString:[_itemDetails objectForKey:@"image"]]];
    item.data = _itemDetails; // copy
    item.center = CGPointMake(colIndex * 165 + 230 + colIndex * 30, rowIndex * 125 + 120 + rowIndex * 10);
    // gán tổng số page hiện có trên server
    _totalPage = [[_itemDetails objectForKey:@"pages"] intValue];
    // delegate vào self để gọi sự kiện click
    item.delegate = pageView;
    item.tag = ITEM_TAG + i;
    i++;
    // set Index
    colIndex++;
    if(colIndex == 4)
    {
        rowIndex++;
        colIndex = 0;
    }

    [pageView addSubview:item];
}
[self.view addSubview:pageView];

问题是如果我直接将ListItem添加到self.view中,ListViewController可以委托ListItem的触摸事件。但如果我将ListItem添加到ListPageView然后将ListPageView添加到self.view ListViewController cant委托ListItem的触摸事件。

列出项目委托:

- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
{
if ([_delegate respondsToSelector:@selector(ListItemBeginTouched:)])
{
    [_delegate ListItemBeginTouched:self];
}

ListPageView委托:

-(void)ListItemBeginTouched:(ListItem *)listItem
{
if ([_delegate respondsToSelector:@selector(ItemBeginTouched:withPageView:)])
{
    [_delegate ItemBeginTouched:listItem withPageView:self];
}
}

0 个答案:

没有答案