代码笔记iOS-Label随字自动变大

Posted 菜鸟and小白

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了代码笔记iOS-Label随字自动变大相关的知识,希望对你有一定的参考价值。

一,效果图。

二,工程图。

三, 代码。

RootViewController.h

复制代码
#import <UIKit/UIKit.h>
//添加HPGrowingTextView头文件
#import "HPGrowingTextView.h"

@interface RootViewController : UIViewController
<HPGrowingTextViewDelegate>
{
    HPGrowingTextView *textView;
}

@end
复制代码

 

RootViewController.m

复制代码
- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view.
    
  
    
    textView = [[HPGrowingTextView alloc] initWithFrame:CGRectMake(10, 100, 240, 40)];
    textView.isScrollable = NO;
    textView.contentInset = UIEdgeInsetsMake(0, 5, 0, 5);
    textView.minNumberOfLines = 1;
    textView.maxNumberOfLines = 6;
    // you can also set the maximum height in points with maxHeight
    // textView.maxHeight = 200.0f;
    textView.returnKeyType = UIReturnKeyGo; //just as an example
    textView.font = [UIFont systemFontOfSize:15.0f];
    textView.delegate = self;
    textView.internalTextView.scrollIndicatorInsets = UIEdgeInsetsMake(5, 0, 5, 0);
    textView.backgroundColor = [UIColor greenColor];
    textView.placeholder = @"Type to see the textView grow!";
    [self.view addSubview:textView];
    
    
    
    
}
复制代码

 

以上是关于代码笔记iOS-Label随字自动变大的主要内容,如果未能解决你的问题,请参考以下文章

怎么让html字体变大

postman 自动生成 curl 代码片段

postman 自动生成 curl 代码片段

VSCode 配置 用户自定义代码片段 自定义自动代码补充

学习笔记 链接

如何设置 vscode 的代码片段,以便在自动完成后自动触发 vscode 的智能感知?