iOS开发——判断输入框是否全部为空格

if(![text stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceCharacterSet]].length) {

NSLog(@"输入为空");

}

你可能感兴趣的:(iOS开发——判断输入框是否全部为空格)