0

我正在为我的 tableview 创建标题。并在该标题上添加视图。在那个视图中有两个图像视图和一个按钮

按钮没有响应(顶部的一个很小的区域响应)为什么会发生这种情况,请帮助我?

我尝试了一些 SO 答案-例如“setAutoresizingMask:UIViewAutoresizingNone”,但没有任何效果

这是我的代码

 -(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
 {


  // ADDING A VIEW     

   UIView *header = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 310, 39.0)];
   header.backgroundColor = [UIColor clearColor];
   header.userInteractionEnabled = YES;
  [header setAutoresizingMask:UIViewAutoresizingFlexibleHeight];


  // ADDING IMAGE VIEW

    UIImageView *image = [[UIImageView alloc]initWithFrame:CGRectMake(0, 0, 310, 39.0)];
    image.image = [UIImage imageNamed:@"headertop.png"];
    [image setUserInteractionEnabled:TRUE];
    [header addSubview:image];


  // ADDING ANOTHER IMAGEVIEW (beneath the view's frame)

    UIImageView *downImage = [[UIImageView alloc]initWithFrame:CGRectMake(0 , 39, 310, 23)];
    downImage.image = [UIImage imageNamed:@"headerbottom.png"];
   [header addSubview:downImage];




 // ADDING BUTTON


  UIButton *placeBtn = [UIButton buttonWithType:UIButtonTypeCustom];
  [placeBtn addTarget:self
             action:@selector(goToRestPage:)
   forControlEvents:UIControlEventTouchUpInside];
   placeBtn.tag = section;
   placeBtn.backgroundColor = [UIColor yellowColor];

   placeBtn.frame = CGRectMake(75,20, 150, 20);
   [header addSubview:placeBtn];





     return header;

  }
4

2 回答 2

5

使用此方法。我想你错过了这个方法。

-(float)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section 
{
     return  30.0;
}

或者这个方法已经存在所以增加标题的高度。

-(float)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section 
{
     return  80.0;
}
于 2013-06-26T13:14:10.387 回答
0

请这样做:

用户交互从您的 XIB 启用为 TRUE。默认为 FALSE。

谢谢,

于 2013-06-26T13:08:16.283 回答