Objective-C
Techzero
这个作者很懒,什么都没留下…
展开
-
iOS UITableView 去除多余分割线
在UITableView初始化时加上以下代码即可: self.tableView.tableFooterView = [[UIView alloc] initWithFrame:CGRectZero];效果演示:原创 2014-07-06 14:07:14 · 1576 阅读 · 1 评论 -
iOS开发系列之四 - UITextView 用法小结
// 初始化输入框并设置位置和大小UITextView *textView = [[UITextView alloc] initWithFrame:CGRectMake(10, 10, 300, 180)];// 设置预设文本textView.text = @"";// 设置文本字体textView.font = [UIFont fontWithName:@"Arial" size:16原创 2014-07-25 20:45:56 · 2634 阅读 · 0 评论 -
iOS开发系列之一 - UIButton 用法小结
// 初始化按钮并设置类型UIButton *btn = [UIButton buttonWithType:UIButtonTypeRoundedRect];// 能够定义的UIButton类型有以下6种:// typedef enum {// UIButtonTypeCustom = 0, 自定义风格// UIButtonTypeR原创 2014-07-24 17:29:26 · 1231 阅读 · 0 评论 -
iOS开发系列之三 - UITextField 用法小结
// 初始化输入框并设置位置和大小UITextField *textField = [[UITextField alloc] initWithFrame:CGRectMake(10, 100, 300, 30)];// 设置输入框提示textField.placeholder = @"TextField Tip";// 输入框中预先输入的文字textField.text = @"预先输入原创 2014-07-25 20:45:22 · 1790 阅读 · 0 评论 -
iOS开发系列之二 - UILabel 用法小结
// 初始化标签UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(10, 100, 300, 150)];// 设置标签文字label.text = @"This is a test text.This is a test text.This is a test text.";// 设置标签文字字体// 使用系统字体l原创 2014-07-24 17:32:27 · 1349 阅读 · 0 评论