| | |
| | | // [self.modelArray addObject:status]; |
| | | //} |
| | | // 设置界面 |
| | | self.model = model; |
| | | [self setUIView]; |
| | | |
| | | [self setUIView:model]; |
| | | } |
| | | |
| | | return self; |
| | | } |
| | | |
| | | |
| | | -(void)setUIView |
| | | -(void)setUIView:(NoticeModel*)model |
| | | { |
| | | //self.backgroundColor = [UIColor clearColor]; |
| | | |
| | | self.model = model; |
| | | self.noticeBK.image = [UIImage imageNamed:@"notice_bg"]; |
| | | self.noticeLogo.image = [UIImage imageNamed:@"img_logo"]; |
| | | |
| | | [self.noticeContext setText:[NSString stringWithFormat:@"昨天的PM2.5状况为差\n请您注意身边的污染源"]]; |
| | | [self.noticeTitle setText:[NSString stringWithFormat:@"摩瑞尔温馨提醒"]]; |
| | | [self.noticeContext setText:self.model.content]; |
| | | [self.noticeTitle setText:self.model.name]; |
| | | // [self.lookDetailBtn setTitle:@"查看详情" forState:UIControlStateNormal]; |
| | | [self.cancelLookBtn setTitle:@"取 消" forState:UIControlStateNormal]; |
| | | } |