ifish/Ifish/controllers/IfishTabControllers/探索/lookafterServer/MinekanHuNotSelectShopContr...

60 lines
2.0 KiB
Objective-C

//
// MinekanHuNotSelectShopController.m
// Ifish
//
// Created by imac on 17/2/14.
// Copyright © 2017年 lianlian. All rights reserved.
//
#import "MinekanHuNotSelectShopController.h"
#import "IfishNomassageView.h"
@interface MinekanHuNotSelectShopController ()
@property(nonatomic,strong) IfishNomassageView *nomassagView;
@end
@implementation MinekanHuNotSelectShopController
- (void)viewDidLoad {
[super viewDidLoad];
[self addTitleViewWithTitle:@"我的看护"];
// Do any additional setup after loading the view.
self.view.backgroundColor =TABLE_BACKGROUD_COLOR;
UIImageView *backImg = [[UIImageView alloc] initWithFrame:CGRectMake(self.view.frame.size.width/2 - 98/2 ,self.view.frame.size.height/4, 108, 98)];
backImg.image = [UIImage imageNamed:@"nurse_empty_picture"];
[self.view addSubview:backImg];
UILabel *title=[[UILabel alloc] initWithFrame:CGRectMake(0, CGRectGetMaxY(backImg.frame) + 30, self.view.frame.size.width,20)];
title.text = @"还没有选择看护商家";
title.textAlignment = NSTextAlignmentCenter;
title.font =[UIFont systemFontOfSize:15];
title.textColor = RGB(51, 51, 51);
[self.view addSubview:title];
UILabel *title2=[[UILabel alloc] initWithFrame:CGRectMake(0, CGRectGetMaxY(title.frame) + 7, self.view.frame.size.width,20)];
title2.text = @"前往[探索]-[优选商家]中选择一个吧";
title2.font =[UIFont systemFontOfSize:12];
title2.textAlignment = NSTextAlignmentCenter;
title2.textColor = RGB(153, 153, 153);
[self.view addSubview:title2];
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
/*
#pragma mark - Navigation
// In a storyboard-based application, you will often want to do a little preparation before navigation
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
// Get the new view controller using [segue destinationViewController].
// Pass the selected object to the new view controller.
}
*/
@end