分享

AppDelegate.m

#import "AppDelegate.h"

//引入VC控制器 头文件

#import "ViewController.h"

#import "WXApi.h"

@interface AppDelegate ()

@end

@implementation AppDelegate

- (BOOL)application:(UIApplication*)application didFinishLaunchingWithOptions:(NSDictionary*)launchOptions {

    // Override point for customization after application launch.

    //设置VC为跟控制器

    self.window.rootViewController=[[UINavigationController alloc]initWithRootViewController:[ViewController new]];

    [WXApi registerApp:@"wx537cf8aac45b25df"];

    return YES;

}

 ViewController.m

#import "ViewController.h"

#import "twoViewController.h"

@interface ViewController ()<UITableViewDelegate,UITableViewDataSource>

{

    //创建表格

    UITableView *tbv;


}

@end

@implementation ViewController

- (void)viewDidLoad {

    [super viewDidLoad];

    //设置标题

    self.title=@"消息";

   //设置标题文字颜色

self.navigationController.navigationBar.titleTextAttributes=@{NSForegroundColorAttributeName:[UIColor whiteColor],NSFontAttributeName:[UIFont systemFontOfSize:18]};

    //设置Navbar背景颜色

    self.navigationController.navigationBar.barTintColor=[UIColor blackColor];


    //表格初始化

    tbv=[[UITableView alloc]initWithFrame:self.view.frame style:UITableViewStyleGrouped];

    //表格代理

    tbv.delegate=self;

    //表格数据源

    tbv.dataSource=self;

    //设置表格背景颜色

    tbv.backgroundColor=[UIColor blackColor];



    //将表格->添加到视图上

    [self.view addSubview:tbv];



    //设置一个 View 层

    UIView*V1=[[UIView alloc]initWithFrame:CGRectMake(0, 0, 80, 44)];

    UIButton*Btn=[[UIButton alloc]initWithFrame:CGRectMake(0, 0, 80, 44)];

    [V1addSubview:Btn];

    //设置按钮标题颜色

    [BtnsetTitle:@"联系人 >" forState:UIControlStateNormal];

    //设置 Navbar 右侧 按钮

    self.navigationItem.rightBarButtonItem=[[UIBarButtonItem alloc]initWithCustomView:V1];



    //设置底部

    UIImageView *bottomview=[[UIImageView alloc]initWithFrame:CGRectMake(-2, self.view.frame.size.height-48, self.view.frame.size.width+6, 50)];

    bottomview.image=[UIImage imageNamed:@"屏幕快照 2018-10-26 上午9.50.41"];

//    bottomview.backgroundColor=[UIColor redColor];

    [self.viewaddSubview:bottomview];


}

#pragma mark --- 表格【返回分区】方法  ---

-(NSInteger)numberOfSectionsInTableView:(UITableView*)tableView

{

    return2;

}

-(NSInteger)tableView:(UITableView*)tableView numberOfRowsInSection:(NSInteger)section

{

    if(section==0) {

        return1;

    }

    else

    {

        return3;

    }

}

#pragma mark --- 表格【数据内容】方法  ---

-(UITableViewCell*)tableView:(UITableView*)tableView cellForRowAtIndexPath:(NSIndexPath*)indexPath

{

    //初始化cell

    UITableViewCell*cell=[tableView dequeueReusableCellWithIdentifier:@"1"];

    //单元格 cell 复用

    if(!cell) {

        cell=[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:@"1"];

        }

//    设置表格背景色 为黑色

    cell.backgroundColor=[UIColorcolorWithRed:255/255.0green:255/255.0blue:255/255.0alpha:0.2];


    if(indexPath.section==0) {

        //设置表格行高

        tbv.rowHeight=150;

        UIView *BtnV1=[[UIButton alloc]initWithFrame:CGRectMake(10, 10, (self.view.frame.size.width)-20, 150-20)];

        BtnV1.backgroundColor=[UIColor clearColor];

        [celladdSubview:BtnV1];


#pragma mark --- 设置表格 内4个icon  ---

        //第一个

        UIButton*btn1=[[UIButton alloc]initWithFrame:CGRectMake(20, 40, 60, 60)];

        [btn1setImage:[UIImage imageNamed:@"屏幕快照 2018-10-26 上午9.26.36"] forState:UIControlStateNormal];

        UILabel*lab1=[[UILabel alloc]initWithFrame:CGRectMake(35, 100, 100, 25)];

        lab1.text=@"粉丝";

        [btn1addTarget:self action:@selector(blick) forControlEvents:UIControlEventTouchUpInside];

        lab1.textColor=[UIColor whiteColor];

        [celladdSubview:lab1];

//        btn1.backgroundColor=[UIColor whiteColor];

        [celladdSubview:btn1];

        //第二个

        UIButton*btn2=[[UIButton alloc]initWithFrame:CGRectMake(20+60+30, 40, 60, 60)];

        [btn2setImage:[UIImage imageNamed:@"屏幕快照 2018-10-26 上午9.26.41"] forState:UIControlStateNormal];

        UILabel*lab2=[[UILabelalloc]initWithFrame:CGRectMake(35*3+20, 100, 100, 25)];

        lab2.text=@"点赞";

                lab2.textColor=[UIColor whiteColor];

        [celladdSubview:lab2];

//        btn2.backgroundColor=[UIColor whiteColor];

        [celladdSubview:btn2];

        //第三个

        UIButton*btn3=[[UIButtonalloc]initWithFrame:CGRectMake((20+60+30+30+60), 40, 60, 60)];

        [btn3setImage:[UIImage imageNamed:@"屏幕快照 2018-10-26 上午9.26.47"] forState:UIControlStateNormal];

        UILabel*lab3=[[UILabelalloc]initWithFrame:CGRectMake(35*6+5, 100, 100, 25)];

        lab3.text=@"我的";

                lab3.textColor=[UIColor whiteColor];

        [celladdSubview:lab3];

//        btn3.backgroundColor=[UIColor whiteColor];

        [celladdSubview:btn3];

        //第四个

        UIButton*btn4=[[UIButtonalloc]initWithFrame:CGRectMake((20+60+30+30+60+90), 40, 60, 60)];

        [btn4setImage:[UIImage imageNamed:@"屏幕快照 2018-10-26 上午9.26.53"] forState:UIControlStateNormal];

        btn4.backgroundColor=[UIColor whiteColor];

        UILabel*lab4=[[UILabelalloc]initWithFrame:CGRectMake(35*8+25, 100, 100, 25)];

        lab4.text=@"评论";

                lab4.textColor=[UIColor whiteColor];

        [celladdSubview:lab4];

        [celladdSubview:btn4];

    }

    else

    {

        tbv.rowHeight=75;

        UIImageView *imgv=[[UIImageView alloc]initWithFrame:CGRectMake(20, 20, 35, 35)];

        imgv.image=[UIImage imageNamed:@"屏幕快照 2018-10-26 上午9.45.56"];

        [celladdSubview:imgv];

        //主标题

        UILabel *lab1=[[UILabel alloc]initWithFrame:CGRectMake(70, 10, 200, 40)];

        lab1.text=@"资讯助手";

        [celladdSubview:lab1];

        //副标题

        UILabel *lab2=[[UILabel alloc]initWithFrame:CGRectMake(70, 30, 200, 40)];

        lab2.text=@"出国游前必学的咖啡叫法";

        lab2.textColor=[UIColor grayColor];

        [celladdSubview:lab2];

    }



    returncell;

}

- (UIView*)tableView:(UITableView*)tableView viewForHeaderInSection:(NSInteger)section{


        UIView *view = [[UIView alloc]initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, 0)];

        UILabel *lable = [[UILabel alloc]initWithFrame:CGRectMake(0, 0, 100, 0)];

//        view.backgroundColor = [UIColor Color];

        lable.text=@"dfkjakj";

        [viewaddSubview:lable];

        returnview;



}

-(UIView*)tableView:(UITableView*)tableView viewForFooterInSection:(NSInteger)section

{

    UIView *view = [[UIView alloc]initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, 0)];

    UILabel *lable = [[UILabel alloc]initWithFrame:CGRectMake(0, 0, 100, 0)];

    //        view.backgroundColor = [UIColor Color];

    lable.text=@"dfkjakj";

    [viewaddSubview:lable];

    returnview;

}

//实现粉丝点击 跳转

-(void)blick

{

    twoViewController*two=[twoViewController new];

    [self presentViewController:two animated:YES completion:nil];

}

@end

two.m

#import "twoViewController.h"

#import "pengyouquanViewController.h"

#import "weixinViewController.h"

#import "WXApi.h"

@interface twoViewController ()

@end

@implementationtwoViewController

- (void)viewDidLoad {

    [super viewDidLoad];

    self.view.backgroundColor=[UIColor colorWithRed:185/255.0 green:220/255.0 blue:150/255.0 alpha:1];


    UIImageView*view=[[UIImageView alloc]initWithFrame:CGRectMake(-2,-2, self.view.frame.size.width+4, self.view.frame.size.height+4)];

    view.image=[UIImage imageNamed:@"屏幕快照 2018-10-26 上午9.57.41"];

    [self.view addSubview:view];


    UIButton*btn=[[UIButton alloc]initWithFrame:CGRectMake(0,self.view.frame.size.height-40, self.view.frame.size.width, 40)];

    btn.backgroundColor=[UIColor clearColor];

    [btnaddTarget:self action:@selector(fanhui) forControlEvents:UIControlEventTouchUpInside];

    [self.view addSubview:btn];

    //朋友圈分享按钮

    UIButton*btn1=[[UIButton alloc]initWithFrame:CGRectMake(90,430, 50, 100)];

    btn1.backgroundColor=[UIColor clearColor];

    [self.view addSubview:btn1];

    [btn1addTarget:self action:@selector(pengyouquan) forControlEvents:UIControlEventTouchUpInside];


    //微信分享按钮

    UIButton*btn2=[[UIButton alloc]initWithFrame:CGRectMake(160,430, 50, 100)];

    btn2.backgroundColor=[UIColor clearColor];

    [self.view addSubview:btn2];

    [btn2addTarget:self action:@selector(weixin) forControlEvents:UIControlEventTouchUpInside];

}

-(void)fanhui{

    [self dismissViewControllerAnimated:YES completion:nil];

}

-(void)pengyouquan

{

    //    文字分享

    SendMessageToWXReq *rep =[[SendMessageToWXReq alloc] init];

    rep.text=@"分享内容";

    rep.bText=YES;

    rep.scene=WXSceneSession;

    [WXApi sendReq:rep];

//    pengyouquanViewController*pengyou=[pengyouquanViewController new];

//    [self presentViewController:pengyou animated:YES completion:nil];

}

-(void)weixin

{

    weixinViewController *weixin=[weixinViewController new];

    [self presentViewController:weixin animated:YES completion:nil];

}

weixinViewController.m

#import "weixinViewController.h"

#import "ViewController.h"

@interface weixinViewController ()

@end

@implementationweixinViewController

- (void)viewDidLoad {

    [super viewDidLoad];

    // Do any additional setup after loading the view.



    UIImageView*view=[[UIImageView alloc]initWithFrame:CGRectMake(-2,-2, self.view.frame.size.width+4, self.view.frame.size.height+4)];

    view.image=[UIImage imageNamed:@"B6409328A164CFF8054B5D2288D4D487"];

    [self.view addSubview:view];

    self.view.backgroundColor=[UIColor clearColor];

    UIButton*btn=[[UIButton alloc]initWithFrame:CGRectMake((self.view.frame.size.width/2)-100,(self.view.frame.size.height/2)+90, self.view.frame.size.width-100, 40)];

    btn.backgroundColor=[UIColor clearColor];

    [btnaddTarget:self action:@selector(fanhui) forControlEvents:UIControlEventTouchUpInside];

    [self.view addSubview:btn];

}

-(void)fanhui{


    [self dismissViewControllerAnimated:YES completion:nil];


}

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,214评论 6 481
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,307评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 152,543评论 0 341
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,221评论 1 279
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,224评论 5 371
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,007评论 1 284
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,313评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,956评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,441评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,925评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,018评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,685评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,234评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,240评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,464评论 1 261
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,467评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,762评论 2 345

推荐阅读更多精彩内容