UIAlertView 的自定义_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > UIAlertView 的自定义

UIAlertView 的自定义

 2013/8/23 17:57:14  _安静ゝ  博客园  我要评论(0)
  • 摘要:继承UIAlertView然后改写layoutSubviews方法-(void)layoutSubviews{CGRectrect=self.bounds;rect.size.height=300;self.bounds=rect;[selfsetBackgroundColor:[UIColorgreenColor]];//重新设置确定,返回按钮的位置。for(UIView*subviewin[selfsubviews]){if([subviewisKindOfClass
  • 标签:view 自定义

继承UIAlertView  然后改写layoutSubviews方法

- (void)layoutSubviews{
    CGRect rect = self.bounds;
    rect.size.height = 300;
    self.bounds = rect;
    [self setBackgroundColor:[UIColor greenColor]];
    //重新设置确定,返回按钮的位置。
    for(UIView *subview in [self subviews]) {
        if([subview isKindOfClass:[UIControl class]] ) {
            CGRect frame = subview.frame;
            frame.origin.y = 180;
            subview.frame = frame;
        }
    }
}

发表评论
用户名: 匿名