亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

iOS如何封裝帶復制功能的UILabel示例代碼

發布時間:2020-10-20 17:03:03 來源:腳本之家 閱讀:161 作者:小豬也浪漫 欄目:移動開發

前言

UILabel繼承自UIView是iOS中使用非常頻繁的一個視圖控件一般用于顯示文字。

一:基本使用

1.創建

UILabel *label = [[UILabel alloc]initWithFrame:CGRectMake(20, 64, 100, 30)];
[self.view addSubview:label];

2.屬性設置

在iOS中你想要使用一個屬性一般就直接“.”屬性英文名稱,或者“set”屬性英文名稱一般就可以出現

label.backgroundColor = [UIColor yellowColor];//設置背景顏色
label.textColor = [UIColor redColor];//設置Label上文字的顏色
label.text = @"我是一個UILabel";//設置Label上的文字
label.font = [UIFont systemFontOfSize:15];//設置Label上文字的大小 默認為17
label.textAlignment = NSTextAlignmentCenter;//設置文字位子默認靠左
label.numberOfLines = 0;//設置行數默認為1,當為0時可以就是設置多行
label.font = [UIFont fontWithName:@"Arial" size:30];//設置內容字體和字體大小
label.highlighted = YES;//Label是否高亮

//有時偶爾會使用到陰影設置
label.shadowColor = [UIColor blueColor];//設置陰影顏色
label.shadowOffset = CGSizeMake(10, 10);//設置陰影的偏移

二、在iOS中下面三個控件,自身就有復制-粘貼的功能:

1、UITextView

2、UITextField

3、UIWebView

在iOS8 之后, 我們發現UILabel不在為我們提供長按彈出復制等操作了, 我們來繼承UILabel自己寫一個帶復制功能的UILabel

三、廢話少說,直接擼代碼

#import "CopyLabel.h"

@implementation CopyLabel

- (instancetype)initWithFrame:(CGRect)frame {
 if (self = [super initWithFrame:frame]) {
 [self pressAction];
 }
 return self;
}
// 初始化設置
- (void)pressAction {
 self.userInteractionEnabled = YES;
 UILongPressGestureRecognizer *longPress = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(longPressAction:)];
 longPress.minimumPressDuration = 0.25;
 [self addGestureRecognizer:longPress];
}

// 使label能夠成為響應事件
- (BOOL)canBecomeFirstResponder {
 
 return YES;
}

// 自定義方法時才顯示對就選項菜單,即屏蔽系統選項菜單
- (BOOL)canPerformAction:(SEL)action withSender:(id)sender {
 if (action == @selector(customCopy:)){
 
 return YES;
 }
 return NO;
}

- (void)customCopy:(id)sender {
 UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
 pasteboard.string = self.text;
}
- (void)longPressAction:(UIGestureRecognizer *)recognizer {
 if (recognizer.state == UIGestureRecognizerStateBegan) {
 [self becomeFirstResponder];
 UIMenuItem *copyItem = [[UIMenuItem alloc] initWithTitle:@"拷貝" action:@selector(customCopy:)];
 UIMenuController *menuController = [UIMenuController sharedMenuController];
 menuController.menuItems = [NSArray arrayWithObjects:copyItem, nil];
 [menuController setTargetRect:self.frame inView:self.superview];
 [menuController setMenuVisible:YES animated:YES];
 }
}

@end

四、廢話少說,直接看效果

- (void)viewDidLoad {
 [super viewDidLoad];
 CopyLabel *copy = [[CopyLabel alloc] initWithFrame:CGRectMake(0, 100, [UIScreen mainScreen].bounds.size.width,50)];
 copy.text = @"清明時節雨紛紛,路上行人欲斷魂。";
 copy.textAlignment = NSTextAlignmentCenter;
 copy.backgroundColor = [UIColor yellowColor];
 copy.textColor = [UIColor redColor];
 copy.font = [UIFont boldSystemFontOfSize:16];
 [self.view addSubview:copy];
}

iOS如何封裝帶復制功能的UILabel示例代碼

五、github地址:

https://github.com/gitwangxiancheng/CopyLabel.git

總結

以上就是這篇文章的全部內容了,希望本文的內容對大家的學習或者工作具有一定的參考學習價值,如果有疑問大家可以留言交流,謝謝大家對億速云的支持。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

松桃| 东海县| 南丰县| 封丘县| 中超| 桦南县| 屏边| 邳州市| 广饶县| 德安县| 崇明县| 黑山县| 桑日县| 鱼台县| 平顺县| 榆林市| 阜宁县| 曲靖市| 黄山市| 金沙县| 民乐县| 高邮市| 广宁县| 宣威市| 融水| 临城县| 上栗县| 益阳市| 谢通门县| 精河县| 苏尼特右旗| 广宗县| 永登县| 呼和浩特市| 榆树市| 石嘴山市| 馆陶县| 昌吉市| 五华县| 安福县| 祥云县|