一些不常用的属性或方法

有时我们会遇到一些不知然的需求,这时我们就要用上一些平常不太用的属性和方法,下面是我遇到的,逐渐增加中···

1、UITextFiled 不可以被粘贴

重写下面这个方法就OK了

- (BOOL)canPerformAction:(SEL)action withSender:(id)sender {
        
        [[NSOperationQueue mainQueue] addOperationWithBlock:^{
            
            [[UIMenuController sharedMenuController] setMenuVisible:NO animated:NO];
            
        }];
        
        return [super canPerformAction:action withSender:sender];
    }

2、怎么点击self.view就让键盘收起,需要添加一个tapGestures么?

 - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
       [self.view endEditing:YES];
}

3、有时我们遇到的tableView不能布满全屏的时候,下面会有多余的分割线。怎么去掉呢,一个很凑巧的方法,从“叶孤城大神”那获取的。

self.tableView.tableFooterView = [[UIView alloc] init];

你可能感兴趣的:(一些不常用的属性或方法)