IOS控件
sunnyMun
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
UIAlertView 的使用
{UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"提示" message:@"请选择医院" delegate:nil cancelButtonTitle:@"确定" otherButtonTitles: nil]; [alert show]; } - (void)alertView:(UIA原创 2016-06-24 17:31:15 · 261 阅读 · 0 评论 -
UIBarButtonItem 自定义 RightBarButtonItem
- (void)setRightBarButtonItemImage:(UIImage *)image sel:(SEL)sel { UIButton *button = [[UIButton alloc] initWithFrame:CGRectMake(0, 0, image.size.width/2, image.size.height/2)]; [bu原创 2016-06-24 17:37:34 · 261 阅读 · 0 评论 -
UILabel 多行显示<自动换行>
UIView *footerView = [[UIView alloc] initWithFrame:CGRectMake(10, 100, 300, 180)]; UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(10, 100, 300, 150)]; label.text = @"He原创 2016-06-24 17:53:23 · 305 阅读 · 0 评论
分享