admin管理员组

文章数量:1516870


重写代理的inputAccessoryView

-(UIView *)inputAccessoryView{
UIToolbar *toolBar = [[UIToolbar alloc]initWithFrame:CGRectMake(0, 0, boundsWidth, 44)];
UIBarButtonItem *flexSpace = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:self action:nil];
UIBarButtonItem *rightButtonItem = [[UIBarButtonItem alloc] initWithTitle:LocalString(@"确定") style:UIBarButtonItemStylePlain target:self action:@selector(doIt)];
toolBar.items = [NSArray arrayWithObjects:flexSpace,rightButtonItem, nil];
return toolBar;
}
-(void)doIt
{
[taskMoneyCell.contentTextField resignFirstResponder];
}

本文标签: 轻松驾驭技术输入视图