zoukankan      html  css  js  c++  java
  • IOS添加多个按钮在导航栏

     UIView *customView = [[UIView alloc] initWithFrame:CGRectMake(0.0f, 0.0f, 75.0f, 30.0f)];
            
            UIButton *editorCityBtn = [UIButton buttonWithType:UIButtonTypeCustom];
            [editorCityBtn setFrame:CGRectMake(0.0f, 0.0f, 30.0f, 30.0f)];
            [editorCityBtn setBackgroundImage:MF_PngWithSkin(@"Defaults", @"other60.png") forState:UIControlStateNormal];
            [editorCityBtn addTarget:self action:@selector(editorCityBtnClick:) forControlEvents:UIControlEventTouchUpInside];
            [customView addSubview:editorCityBtn];
            
            UIButton *addCityBtn = [UIButton buttonWithType:UIButtonTypeCustom];
            [addCityBtn setFrame:CGRectMake(35.0f, 0.0f, 30.0f, 30.0f)];
            [addCityBtn setBackgroundImage:MF_PngWithSkin(@"Defaults", @"ico_promotion43x42.png") forState:UIControlStateNormal];
            [addCityBtn addTarget:self action:@selector(addCityBtnClick:) forControlEvents:UIControlEventTouchUpInside];
            [customView addSubview:addCityBtn];
            
            UIBarButtonItem *rightBtn = [[UIBarButtonItem alloc] initWithCustomView:customView];
            [self.navigationItem setRightBarButtonItem:rightBtn];
  • 相关阅读:
    存储过程
    事务
    mysql常用函数
    explain相关
    索引相关
    sql基本查询语法
    kubernetes日常记录
    Kubernetes的RBAC权限控制
    kubernetes安装ingress-nginx
    Kubernetes部署nginx-ingress
  • 原文地址:https://www.cnblogs.com/joesen/p/3628354.html
Copyright © 2011-2022 走看看