bluetooth99 2013-05-09 02:07 采纳率: 0%
浏览 4232
已采纳

UINavigationItem:添加按钮

CSDN移动问答

如何在navigationItem中添加新按钮?需要在右侧按钮附近:

左右按钮:

self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithCustomView:_cancelButton];
self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithCustomView:_shareButton];

再添加一个?

  • 写回答

2条回答 默认 最新

  • redCoral_ 2013-05-09 05:35
    关注

    有很多方法可以实现在右侧添加一个按钮,我认为最简单的方法:

    UIView *buttonView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 100, 44)];
    
    UIButton *exampleButton1 = [UIButton buttonWithType:UIButtonTypeCustom];
    exampleButton1.frame = CGRectMake(0, 2, 30, 40);
    [exampleButton1 addTarget:self action:@selector(FirstMethod) forControlEvents:UIControlEventTouchUpInside];
    [exampleButton1 setImage:[UIImage imageNamed:@"image1.png"] forState:UIControlStateNormal];
    [buttonView addSubview:exampleButton1];
    UIButton *exampleButton2 = [UIButton buttonWithType:UIButtonTypeCustom];
    exampleButton2.frame = CGRectMake(70, 2, 30, 40);
    [exampleButton2 addTarget:self action:@selector(Second method) forControlEvents:UIControlEventTouchUpInside];
    [exampleButton2 setImage:[UIImage imageNamed:@"image2.png"] forState:UIControlStateNormal];
    
    [buttonView addSubview:exampleButton2];
    
     self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithCustomView:buttonView];
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 如何用stata画出文献中常见的安慰剂检验图
  • ¥15 c语言链表结构体数据插入
  • ¥40 使用MATLAB解答线性代数问题
  • ¥15 COCOS的问题COCOS的问题
  • ¥15 FPGA-SRIO初始化失败
  • ¥15 MapReduce实现倒排索引失败
  • ¥15 ZABBIX6.0L连接数据库报错,如何解决?(操作系统-centos)
  • ¥15 找一位技术过硬的游戏pj程序员
  • ¥15 matlab生成电测深三层曲线模型代码
  • ¥50 随机森林与房贷信用风险模型