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];
  • 相关阅读:
    ext4.2常用的几种弹框
    oracle的批量操作sql语句
    ztree异步加载树节点
    shiro接口对象介绍
    jquery记住密码
    整合ssm框架
    redis中 Could not get a resource from the pool 异常解决
    redis的安装
    centos下tomcat的安装
    centos下MySQL的安装
  • 原文地址:https://www.cnblogs.com/joesen/p/3628354.html
Copyright © 2011-2022 走看看