手势添加
UILabel *textLabel = [[UILabel alloc] init];
// 红色是 label fram (VFL)
[self.view addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"H:|-10-[textLabel]-10-|" options:0 metrics:nil views:NSDictionaryOfVariableBindings(textLabel)]];
//V:[titleLabel]-0-[textLabel]-35-|
[self.view addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"V:[_titleLabel]-0-[textLabel]-(>=40)-|" options:0 metrics:nil views:NSDictionaryOfVariableBindings(_titleLabel,textLabel)]];
textLabel.userInteractionEnabled = YES;
UITapGestureRecognizer* textLabelTag = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(writeButtonClick)];
[textLabel addGestureRecognizer:textLabelTag];

浙公网安备 33010602011771号