调节一个多行Label之间的间隙

类方法是存放在这个类的元类结构中

类的方法是存放在这个类的元类结构中

yyivarinfo是封装成员变量的

yymethodinfo是封装方法的

yypropertyinfo是封装属性的

yyclassinfo这个类就是对我们常见的类进行一个二度封装OC中我们所有的类都继承自两个基类, NSObject 或者是  NSProxy(至今未还没见过)


因为类方法的效率更高些,所以一般不需要再方法内部访问成员变量的话,写个类方法还是好一些


比如调节一个多行Label之间的//
//  ViewController.m
//  TestParagraphLabel
//
//  Created by colawh on 16/10/30.
//  Copyright © 2016年 colawh. All rights reserved.
//

#import "ViewController.h"
#import "ParagraphLabel.h"
@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    UILabel *label = [[UILabel alloc]initWithFrame:CGRectMake(100, 200, 100, 200)];
    label.numberOfLines = 0;
    [self.view addSubview:label];
    label.text = @"drawRect在以下情况下会被调用、如果在UIView初始化时没有设置rect大小,将直接导致drawRect不被自动调用。drawRect调用是在Controller->loadView, Controller->viewDidLoad 两方法之后掉用的.所以不用担心在控制器中,这些View的drawRect就开始画了.这样可以在控制器中设置一些值给View(如果这些View draw的时候需要用到某些变量值).";
    [label sizeToFit];
  label.attributedText =   [ViewController attributedStringWithString:label.text];
    // Do any additional setup after loading the view, typically from a nib.
}


- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}
+ (NSAttributedString *)attributedStringWithString:(NSString *)string{
    NSMutableParagraphStyle *paragraph  = [[NSMutableParagraphStyle alloc]init];
    paragraph.lineSpacing = 50;
    NSMutableAttributedString *touchString = [[NSMutableAttributedString alloc]initWithString:string];
    [touchString addAttribute:NSParagraphStyleAttributeName value:paragraph range:[string rangeOfString:string]];
    return touchString;
}

@end


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值