これに似た問題がありますが、答えはあまり役に立ちません。私はUITableView
いくつかのカスタムを持っていますUITableViewCells
。これらのセルにはネストされたカスタムがいくつかUIViews
あり、最後にいくつかの UIButtons が内部にあります。問題は、上記の質問のように、ボタンをタッチするとイベントが入力されずUITableView
、スクロールしないことです。
ここにいくつかのコードがあります(これは再現するための最速の方法であり、私の実際のコードではありません):
@interface ViewController : UIViewController <UITableViewDataSource, UITableViewDelegate>
@property (strong, nonatomic) IBOutlet UITableView * tableView;
@end
@implementation ViewController
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
if (self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil])
{
self.tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 0,
self.view.bounds.size.width,
self.view.bounds.size.height)
style:UITableViewStylePlain];
[self.view addSubview:self.tableView];
self.tableView.delegate = self;
self.tableView.dataSource = self;
}
return self;
}
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return 1;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell * cell = [[UITableViewCell alloc] init];
UIButton * button = [UIButton buttonWithType:UIButtonTypeCustom];
button.backgroundColor = [UIColor redColor];
button.frame = CGRectMake(0, 0, 50, 44);
[cell.contentView addSubview:button];
return cell;
}
@end
唯一のセルの赤いボタンでは、テーブル ビューのバウンス スクロールができません。
誰かが私を少し助けることができますか?
PS 私が提供したコードの愚かさに注意を払わないでください。私はそれに関するすべての問題を認識しています。問題が何であるかを示すためにそれを提供しただけです。buttonView
との衝突ですscrollView
。