单军华
2018-04-28 1d39caf7235522ae121db7a188ba41a706217407
pregnancy_guard/BaseProject/Views/Cell/AdNoticeView.m
@@ -157,23 +157,23 @@
        //    [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];
}