• 关于navigationbar的属性


    //RootViewController.m

    - (void)viewDidLoad {
    // Do any additional setup after loading the view.
    [super viewDidLoad];
    // Do any additional setup after loading the view.
    [self.navigationController.navigationBar setTranslucent:NO];//设置navigationbar的半透明

    self.title = @"RootViewController";//设置navigationbar上显示的标题

    [self.navigationController.navigationBar setBarTintColor:[UIColor purpleColor]];//设置navigationbar的颜色

    self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc]initWithBarButtonSystemItem:UIBarButtonItemStyleDone target:self action:Nil];//设置navigationbar左边按钮

    self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc]initWithBarButtonSystemItem:UIBarButtonItemStylePlain target:self action:Nil];//设置navigationbar右边按钮

    [self.navigationController.navigationBar setTintColor:[UIColor whiteColor]];//设置navigationbar上左右按钮字体颜色

    //self.navigationItem.rightBarButtonItem setTarget:<#(id)#>
    //动态添加一个按钮


    UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];

    button.frame = CGRectMake(0, 300, 300, 50);

    [button setTitle:@"新添加的动态按钮" forState: UIControlStateNormal];

    button.backgroundColor = [UIColor clearColor];

    button.tag = 2000;

    [button addTarget:self action:@selector(clicked:) forControlEvents:UIControlEventTouchUpInside];

    [self.view addSubview:button];

    }

    - (void)clicked:(id) sender{
    SecondViewController *second = [[SecondViewController alloc]init];
    [self.navigationController pushViewController:second animated:YES];
    //second.str = @"hello!!";
    [second release];
    }
    //这个是新按钮的响应函数
    -(IBAction) buttonClicked:(id)sender {
    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"提示"
    message:@"单击了动态按钮!"
    delegate:self
    cancelButtonTitle:@"确定"
    otherButtonTitles:nil];
    [alert show];
    [alert release];
    }

  • 相关阅读:
    I Think I Need a Houseboat
    iOS 8 模糊视图(毛玻璃效果)的简单实现UIVisualEffectView
    freemarker报错之二
    [算法]有趣算法合辑[31-40]
    计算机专业术语全称及含义整理
    JAVA经常使用数据结构及原理分析
    我读经典(6):读《文明之光》有感
    流水号的生成(日期+业务码+自增序列)
    桶排序算法
    3.5星|《哈佛商学院最受欢迎的营销课》:跳出营销红海:逆向战略、超越行业和敌意品牌
  • 原文地址:https://www.cnblogs.com/zhibin/p/4114507.html
Copyright © 2020-2023  润新知