我的编程空间,编程开发者的网络收藏夹
学习永远不晚

iOS自定义UIBarButtonItem的target和action示例代码

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

iOS自定义UIBarButtonItem的target和action示例代码

需求描述:

在项目开发过程中,遇到一种情况,需要自定义UIBarButtonItem,来实现分享样式,并在iPad中弹出系统分享框(UIActivityViewController),系统分享框需要指定显示位置(barButtonItem)。而自定义的UIBarButtonItem target指向的是UIButton。这与需求不符,需自定义UIBarButtonItem。

在介绍自定义UIBarButtonItem前,先介绍一下相关控件的子父类关系(也可以说继承关系)。

1、UIBarItem


NS_CLASS_AVAILABLE_IOS(2_0) @interface UIBarItem : NSObject <NSCoding, UIAppearance>

UIBarButtonItem


NS_CLASS_AVAILABLE_IOS(2_0) @interface UIBarButtonItem : UIBarItem <NSCoding>

UITabBarItem


NS_CLASS_AVAILABLE_IOS(2_0) @interface UITabBarItem : UIBarItem

下面是在界面上的显示效果

UIBarButtonItem和UITabBarItem效果显示

从上图中看到UIBarButtonItem有三种效果显示,分别是

导航左侧返回按钮,UINavigationItem中的backBarButtonItem属性


@property(nullable,nonatomic,strong) UIBarButtonItem *backBarButtonItem

纯文本的UIBarButtonItem


- (instancetype)initWithTitle:(nullable NSString *)title style:(UIBarButtonItemStyle)style target:(nullable id)target action:(nullable SEL)action;

纯图片的UIBarButtonItem,其中包括自定义图片和系统样式


- (instancetype)initWithImage:(nullable UIImage *)image style:(UIBarButtonItemStyle)style target:(nullable id)target action:(nullable SEL)action;

- (instancetype)initWithBarButtonSystemItem:(UIBarButtonSystemItem)systemItem target:(nullable id)target action:(nullable SEL)action;

UIToolBar使用UIBarButtonItem与导航效果一致。

关于UITabBarItem在这里就不多介绍,只是拿其显示效果与UIBarButtonItem对比。

在开发过程中,我们会使用到自定义UIBarButtonItem,来显示我们想要的界面效果。使用的方法常为:


- (instancetype)initWithCustomView:(UIView *)customView;

- (void)viewDidLoad {
 [super viewDidLoad];
 //自定义View
 UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0.0, 0.0, 60.0, 40.0)];
 view.backgroundColor = [UIColor redColor];
 //自定义按钮
 UIButton *btn = [UIButton buttonWithType:UIButtonTypeCustom];
 btn.frame = view.bounds;
 [btn addTarget:self action:@selector(clickRight:) forControlEvents:UIControlEventTouchUpInside];
 [view addSubview:btn];
 //自定义Item
 UIBarButtonItem *barItem = [[UIBarButtonItem alloc] initWithCustomView:view];
 //
 self.navigationItem.leftBarButtonItem = barItem;
}

#pragma mark -

- (void)clickRight:(id)sender {
 NSLog(@"sender:%@",sender);
}

其中打印sender,其类型是UIButton。

2017-10-17 16:08:43.917 TestImage[5482:163865] sender:<UIButton: 0x7fb9bad12e60; frame = (0 0; 60 40); opaque = NO; layer = <CALayer: 0x61000003b940>>

通过上面描述,发现系统方法不能实现项目需求效果。当然也可以通过属性保存UIBarButtonItem方法来实现需求效果。即在点击按钮响应后,直接使用保存的UIBarButtonItem,但是我没有采用这种方法。

下面是我给出的两种解决方案:

方案一

继承UIBarButtonItem,实现子类。

定义子类


#import <UIKit/UIKit.h>

@interface LLBarButtonItem : UIBarButtonItem


@end

#import "LLBarButtonItem.h"

@implementation LLBarButtonItem

- (id)initWithCustomView:(UIView *)customView {
 self = [super initWithCustomView:customView];
 if (self) {
 UIButton *btn = [UIButton buttonWithType:UIButtonTypeCustom];
 btn.frame = customView.bounds;
 btn.backgroundColor = [UIColor clearColor];
 [btn addTarget:self action:@selector(clickButton:) forControlEvents:UIControlEventTouchUpInside];
 [customView addSubview:btn];
 }
 return self;
}

- (void)clickButton:(UIButton *)sender {
 if (self.target && [self.target respondsToSelector:self.action]) {
 //[self.target performSelector:self.action withObject:self];
 IMP imp = [self.target methodForSelector:self.action];
 
 void (*func)(id, SEL, id) = (void *)imp;
 
 func(self.target, self.action, self);
 }
}

@end

定义子类对象,调用子类对象


- (void)viewDidLoad {
 [super viewDidLoad];
 //自定义View
 UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0.0, 0.0, 60.0, 40.0)];
 view.backgroundColor = [UIColor clearColor];
 //自定义Item
 LLBarButtonItem *barItem = [[LLBarButtonItem alloc] initWithCustomView:view];
 barItem.target = self;
 barItem.action = @selector(clickRight:);
 //
 self.navigationItem.leftBarButtonItem = barItem;
}

#pragma mark -

- (void)clickRight:(id)sender {
 NSLog(@"sender:%@",sender);
}

打印target对象

2017-10-17 16:24:11.696 TestImage[5557:170144] sender:<LLBarButtonItem: 0x7fb403c16080>

方案二

UIBarButtonItem类别

定义类别


#import <UIKit/UIKit.h>

@interface UIBarButtonItem (Custom)

- (void)addCutomTarget:(id)target action:(SEL)action;

@end

#import "UIBarButtonItem+Custom.h"

@implementation UIBarButtonItem (Custom)

- (void)addCutomTarget:(id)target action:(SEL)action {
 if (self.customView != nil) {
 self.target = target;
 self.action = action;
 //
 UIButton *btn = [UIButton buttonWithType:UIButtonTypeCustom];
 btn.frame = self.customView.bounds;
 btn.backgroundColor = [UIColor clearColor];
 [btn addTarget:self action:@selector(clickButton:) forControlEvents:UIControlEventTouchUpInside];
 [self.customView addSubview:btn];
 }
}

- (void)clickButton:(UIButton *)sender {
 if (self.target && [self.target respondsToSelector:self.action]) {
 //[self.target performSelector:self.action withObject:self];
 IMP imp = [self.target methodForSelector:self.action];
 
 void (*func)(id, SEL, id) = (void *)imp;
 
 func(self.target, self.action, self);
 }
}

@end

调用类别方法


- (void)viewDidLoad {
 [super viewDidLoad];
 //自定义View
 UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0.0, 0.0, 60.0, 40.0)];
 view.backgroundColor = [UIColor clearColor];
 //自定义Item
 UIBarButtonItem *barItem = [[UIBarButtonItem alloc] initWithCustomView:view];
 [barItem addCutomTarget:self action:@selector(clickRight:)];
 //
 self.navigationItem.leftBarButtonItem = barItem;
}

#pragma mark -

- (void)clickRight:(id)sender {
 NSLog(@"sender:%@",sender);
}

打印target对象

2017-10-17 16:28:14.407 TestImage[5598:172418] sender:<UIBarButtonItem: 0x7ffeda609e20>

两种方法都使用了IMP做消息传递。

你更喜欢哪一种?!

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对编程网的支持。

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

iOS自定义UIBarButtonItem的target和action示例代码

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

iOS自定义UIBarButtonItem的target和action示例代码

需求描述: 在项目开发过程中,遇到一种情况,需要自定义UIBarButtonItem,来实现分享样式,并在iPad中弹出系统分享框(UIActivityViewController),系统分享框需要指定显示位置(barButtonItem)
2022-05-15

iOS自定义PageControl的方法示例

前言 本文主要给大家介绍了关于iOS自定义PageControl的相关内容,分享出来供大家参考学习,下面话不多说了,来一起看看详细的介绍吧自定义PageControl我们经常会用到PageControl,但是系统的PageControl只有
2022-05-16

struts2自定义拦截器的示例代码

题目:使用struts2自定义拦截器,完成用户登陆才能访问权限的实现 在session中存放user变量表示用户登陆,若user为空则用户没有登陆,反之登陆 显示提示信息(请先登录)定义拦截器在struts.xml中定义拦截器使用标签<
2023-05-31

C#实现自定义屏保的示例代码

这篇文章主要为大家详细介绍了如何利用C#实现自定义屏保的功能,文中的示例代码讲解详细,对我们学习C#有一定的帮助,感兴趣的小伙伴可以跟随小编一起了解一下
2022-12-31

iOS使用UIKeyInput自定义密码输入框的方法示例

前言开发中很多地方都会遇到密码输入,这时候往往需要根据UI设计自定义。这里遵守UIKeyInput,实现协议中的方法,让自定义View可以进行文字输入;再通过func draw(_ rect: CGRect)绘制现自定义UI;使用配置类来统
2022-05-18

Android实现自定义加载框的代码示例

App在与服务器进行网络交互的时候,需要有一个提示的加载框,如图:此时我们可以自定义一个加载中的对话框,代码如下:public class LoadingDialog extends Dialog { private static fin
2022-06-06

Android自定义滑动验证条的示例代码

本文介绍了Android自定义滑动验证条的示例代码,分享给大家,具体如下:*注:不知道为什么,h6的标签在这里没用了,所以我也只能用Markdown的语法来写了项目地址:https://github.com/994866755/handso
2023-05-30

Vue实现自定义视频和图片上传的示例代码

这篇文章主要为大家详细介绍了如何通过Vue实现自定义视频和图片上传的功能,文中的示例代码简洁易懂,感兴趣的小伙伴可以跟随小编一起学习一下
2023-05-17

Android自定义仿ios加载弹窗的示例分析

小编给大家分享一下Android自定义仿ios加载弹窗的示例分析,希望大家阅读完这篇文章之后都有所收获,下面让我们一起去探讨吧!具体内容如下效果如下:IosLoadDialog类(可直接复制):public class IosLoadDia
2023-06-15

IOS开发自定义Button的外观和交互行为示例详解

这篇文章主要为大家介绍了IOS开发自定义Button的外观和交互行为示例详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
2023-02-16

Android 自定义缩短Toast显示时间的实例代码

我这个主要是缩短Toast显示时间,要延长时间的话,可自行更改 废话不多说哈,见代码import android.content.Context; import android.os.CountDownTimer; import andro
2022-06-06

编程热搜

  • Android:VolumeShaper
    VolumeShaper(支持版本改一下,minsdkversion:26,android8.0(api26)进一步学习对声音的编辑,可以让音频的声音有变化的播放 VolumeShaper.Configuration的三个参数 durati
    Android:VolumeShaper
  • Android崩溃异常捕获方法
    开发中最让人头疼的是应用突然爆炸,然后跳回到桌面。而且我们常常不知道这种状况会何时出现,在应用调试阶段还好,还可以通过调试工具的日志查看错误出现在哪里。但平时使用的时候给你闹崩溃,那你就欲哭无泪了。 那么今天主要讲一下如何去捕捉系统出现的U
    Android崩溃异常捕获方法
  • android开发教程之获取power_profile.xml文件的方法(android运行时能耗值)
    系统的设置–>电池–>使用情况中,统计的能耗的使用情况也是以power_profile.xml的value作为基础参数的1、我的手机中power_profile.xml的内容: HTC t328w代码如下:
    android开发教程之获取power_profile.xml文件的方法(android运行时能耗值)
  • Android SQLite数据库基本操作方法
    程序的最主要的功能在于对数据进行操作,通过对数据进行操作来实现某个功能。而数据库就是很重要的一个方面的,Android中内置了小巧轻便,功能却很强的一个数据库–SQLite数据库。那么就来看一下在Android程序中怎么去操作SQLite数
    Android SQLite数据库基本操作方法
  • ubuntu21.04怎么创建桌面快捷图标?ubuntu软件放到桌面的技巧
    工作的时候为了方便直接打开编辑文件,一些常用的软件或者文件我们会放在桌面,但是在ubuntu20.04下直接直接拖拽文件到桌面根本没有效果,在进入桌面后发现软件列表中的软件只能收藏到面板,无法复制到桌面使用,不知道为什么会这样,似乎并不是很
    ubuntu21.04怎么创建桌面快捷图标?ubuntu软件放到桌面的技巧
  • android获取当前手机号示例程序
    代码如下: public String getLocalNumber() { TelephonyManager tManager =
    android获取当前手机号示例程序
  • Android音视频开发(三)TextureView
    简介 TextureView与SurfaceView类似,可用于显示视频或OpenGL场景。 与SurfaceView的区别 SurfaceView不能使用变换和缩放等操作,不能叠加(Overlay)两个SurfaceView。 Textu
    Android音视频开发(三)TextureView
  • android获取屏幕高度和宽度的实现方法
    本文实例讲述了android获取屏幕高度和宽度的实现方法。分享给大家供大家参考。具体分析如下: 我们需要获取Android手机或Pad的屏幕的物理尺寸,以便于界面的设计或是其他功能的实现。下面就介绍讲一讲如何获取屏幕的物理尺寸 下面的代码即
    android获取屏幕高度和宽度的实现方法
  • Android自定义popupwindow实例代码
    先来看看效果图:一、布局
  • Android第一次实验
    一、实验原理 1.1实验目标 编程实现用户名与密码的存储与调用。 1.2实验要求 设计用户登录界面、登录成功界面、用户注册界面,用户注册时,将其用户名、密码保存到SharedPreference中,登录时输入用户名、密码,读取SharedP
    Android第一次实验

目录