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];
  • 相关阅读:
    模拟Struts2框架Action的实现
    Servlet中表单的重复提交
    php回调函数设计
    vagrant+xdebug
    css之vw布局
    css之rem布局
    微信jssdk支付坑
    webpack中添加px2rem-loader
    phpstorm+xdebug手机app调试
    mysql产生死锁
  • 原文地址:https://www.cnblogs.com/joesen/p/3628354.html
Copyright © 2011-2022 走看看