- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章iOS中各种UI控件属性设置示例代码由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
//视图已经加载完了,可以进行ui的添加了
- (
void
)viewDidLoad {
[superviewDidLoad];
// Do any additional setup after loading the view.
//初始化UILabel注意指定该对象的位置及大小
UILabel *lb = [[UILabelalloc]initWithFrame:CGRectMake(0,20,300,200)];
//设置文字
lb.text =@
"label测试我在学习中学些ui story水电费水电费未入围 i肉煨入味哦水电费水电费水电费"
;
//设置背景色
lb.backgroundColor = [UIColorcolorWithRed:0green:191.0/255.0blue:243.0/255.0alpha:1.0];
//设置文字颜色
lb.textColor = [UIColorwhiteColor];
//文字大小,文字字体
lb.font = [UIFontsystemFontOfSize:25];
NSLog(@
"系统字体名字:%@"
,lb.font.familyName);
//打印文字字体列表
NSArray *arrFonts = [UIFontfamilyNames];
NSLog(@
"系统字体列表:%@"
,arrFonts);
//文字对齐
lb.textAlignment =NSTextAlignmentJustified;
// NSTextAlignmentLeft = 0, //居左对齐,默认
// NSTextAlignmentCenter = 1, //居中对齐
// NSTextAlignmentRight = 2, //居右对齐
// NSTextAlignmentJustified = 3, // Fully-justified. The last line in a paragraph is natural-aligned.
// NSTextAlignmentNatural = 4, // Indicates the default alignment for script
//换行模式
lb.lineBreakMode =NSLineBreakByCharWrapping;
// NSLineBreakByWordWrapping = 0, //每一行的结尾以字或者一个完整单词换行(若不够一个单词的位置)
// NSLineBreakByCharWrapping,//在每一行的结尾以字母进行换行
// NSLineBreakByClipping,// Simply clip
// NSLineBreakByTruncatingHead,// Truncate at head of line: "...wxyz"
// NSLineBreakByTruncatingTail,// Truncate at tail of line: "abcd..."
// NSLineBreakByTruncatingMiddle// Truncate middle of line: "ab...yz"
//指定行数,0为不限制行树,可以指定具体的数字
lb.numberOfLines =0;
//加圆角
lb.layer.cornerRadius =30;
//此行必须加,将原来的矩形角剪掉
lb.clipsToBounds =YES;
//加边框颜色,宽度,注意给layer加的颜色是CGColor类型
lb.layer.borderColor = [[UIColorredColor]CGColor];
lb.layer.borderWidth =1.0;
//把label添加到视图上,并且会显示
[self.viewaddSubview:lb];
}
|
Label的首行缩进一直是个很头疼的问题,现在IOS6只有有一个 attributedText的属性值得我们深究,可以达到我们自定义的行高,还有首行缩进,各种行距和间隔问题。下面这个是两个Label, 一个是UserName,另一个是Content文本多行信息 。
创建标签 。
1
2
3
4
|
@interface ViewController : UIViewController
@property ( weak , nonatomic ) IBOutlet UILabel *usernameLabel
@property ( weak , nonatomic ) IBOutlet UILabel *contentLabel;
@end
|
视图展示层 。
1
2
3
4
5
6
7
8
9
|
- (
void
)viewDidLoad {
self . usernameLabel . text = @
"用户名Jordan CZ: "
;
self . usernameLabel . adjustsFontSizeToFitWidth = YES ;
[ self . usernameLabel sizeToFit ];
self . contentLabel . text = @
"首行缩进根据用户昵称自动调整 间隔可自定根据需求随意改变。。。。。。。"
;
self . contentLabel . adjustsFontSizeToFitWidth = YES ;
self . contentLabel . adjustsLetterSpacingToFitWidth = YES ;
[ self resetContent ];
}
|
自适应计算间距 。
1
2
3
4
5
6
7
8
9
10
11
|
- (
void
)resetContent{
NSMutableAttributedString *attributedString = [[ NSMutableAttributedString alloc ]initWithString : self . contentLabel . text ];
NSMutableParagraphStyle *paragraphStyle = [[ NSMutableParagraphStyle alloc ]init ];
paragraphStyle. alignment = NSTextAlignmentLeft ;
paragraphStyle. maximumLineHeight = 60 ;
//最大的行高
paragraphStyle. lineSpacing = 5 ;
//行自定义行高度
[paragraphStyle setFirstLineHeadIndent : self . usernameLabel . frame . size .width + 5 ];
//首行缩进 根据用户昵称宽度在加5个像素
[attributedString addAttribute : NSParagraphStyleAttributeName value:paragraphStyle range : NSMakeRange ( 0 , [ self . contentLabel . text length ])];
self . contentLabel . attributedText = attributedString;
[ self . contentLabel sizeToFit ];
}
|
UITextView的使用详解 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//初始化并定义大小
UITextView *textview = [[UITextView alloc] initWithFrame:CGRectMake(20, 10, 280, 30)];
textview.backgroundColor=[UIColor whiteColor];
//背景色
textview.scrollEnabled = NO;
//当文字超过视图的边框时是否允许滑动,默认为“YES”
textview.editable = YES;
//是否允许编辑内容,默认为“YES”
textview.delegate = self;
//设置代理方法的实现类
textview.font=[UIFont fontWithName:@
"Arial"
size:18.0];
//设置字体名字和字体大小;
textview.returnKeyType = UIReturnKeyDefault;
//return键的类型
textview.keyboardType = UIKeyboardTypeDefault;
//键盘类型
textview.textAlignment = NSTextAlignmentLeft;
//文本显示的位置默认为居左
textview.dataDetectorTypes = UIDataDetectorTypeAll;
//显示数据类型的连接模式(如电话号码、网址、地址等)
textview.textColor = [UIColor blackColor];
textview.text = @
"UITextView详解"
;
//设置显示的文本内容
[self.view addSubview:textview];
|
UITextView的代理方法如下
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
//将要开始编辑
- (
BOOL
)textViewShouldBeginEditing:(UITextView *)textView;
//将要结束编辑
- (
BOOL
)textViewShouldEndEditing:(UITextView *)textView;
//开始编辑
- (
void
)textViewDidBeginEditing:(UITextView *)textView;
//结束编辑
- (
void
)textViewDidEndEditing:(UITextView *)textView;
//内容将要发生改变编辑
- (
BOOL
)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString*)text;
//内容发生改变编辑
- (
void
)textViewDidChange:(UITextView *)textView;
//焦点发生改变
- (
void
)textViewDidChangeSelection:(UITextView *)textView;
|
有时候我们要控件自适应输入的文本的内容的高度,只要在textViewDidChange的代理方法中加入调整控件大小的代理即可 。
1
2
3
4
5
6
7
8
9
10
11
12
|
- (
void
)textViewDidChange:(UITextView *)textView{
//计算文本的高度
CGSize constraintSize;
constraintSize.width = textView.frame.size.width-16;
constraintSize.height = MAXFLOAT;
CGSize sizeFrame =[textView.text sizeWithFont:textView.font
constrainedToSize:constraintSize
lineBreakMode:UILineBreakModeWordWrap];
//重新调整textView的高度
textView.frame =CGRectMake(textView.frame.origin.x,textView.frame.origin.y,textView.frame.size.width,sizeFrame.height+5);
}
|
控制输入文字的长度和内容,可通调用以下代理方法实现 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
- (
BOOL
)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString*)text
{
if
(range.location>=100)
{
//控制输入文本的长度
return
NO;
}
if
([text isEqualToString:@
"\n"
]) {
//禁止输入换行
return
NO;
}
else
{
return
YES;
}
}
|
UITextView退出键盘的几种方式 。
因为iphone的软键盘没有自带的退键盘键,所以要实现退出键盘需要自己实现,有如下几种方式:
1)如果你程序是有导航条的,可以在导航条上面加多一个Done的按钮,用来退出键盘,当然要先实UITextViewDelegate.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
- (
void
)textViewDidBeginEditing:(UITextView *)textView {
UIBarButtonItem *done = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemDone
target:self
action:@selector(dismissKeyBoard)];
self.navigationItem.rightBarButtonItem = done;
[done release];
done = nil;
}
- (
void
)textViewDidEndEditing:(UITextView *)textView {
self.navigationItem.rightBarButtonItem = nil;
}
- (
void
)dismissKeyBoard {
[self.textView resignFirstResponder];
}
|
2)如果你的textview里不用回车键,可以把回车键当做退出键盘的响应键.
代码如下:
1
2
3
4
5
6
7
8
|
-(
BOOL
)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString*)text
{
if
([text isEqualToString:@
"\n"
]) {
[textView resignFirstResponder];
return
NO;
}
return
YES;
}
|
3)还有你也可以自定义其他加载键盘上面用来退出,比如在弹出的键盘上面加一个view来放置退出键盘的Done按钮。 代码如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
UIToolbar * topView = [[UIToolbar alloc]initWithFrame:CGRectMake(0, 0, 320,30)];
[topView setBarStyle:UIBarStyleBlack];
UIBarButtonItem *btnSpace = [[UIBarButtonItem alloc]initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace
target:self
action:nil];
UIBarButtonItem *doneButton = [[UIBarButtonItem alloc]initWithTitle:@
"Done"
style:UIBarButtonItemStyleDone
target:self
action:@selector(dismissKeyBoard)];
NSArray * buttonsArray = @[btnSpace, doneButton];;
[doneButton release];
[btnSpace release];
[topView setItems:buttonsArray];
[textView setInputAccessoryView:topView];
//当文本输入框加上topView
[topView release];
topView = nil;
-(IBAction)dismissKeyBoard
{
[tvTextView resignFirstResponder];
}
|
总结 。
到此这篇关于iOS中各种UI控件属性设置的文章就介绍到这了,更多相关iOS各种UI控件属性设置内容请搜索我以前的文章或继续浏览下面的相关文章希望大家以后多多支持我! 。
原文链接:https://segmentfault.com/a/1190000023805836 。
最后此篇关于iOS中各种UI控件属性设置示例代码的文章就讲到这里了,如果你想了解更多关于iOS中各种UI控件属性设置示例代码的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
这个问题已经有答案了: Is there any way to accept only numeric values in a JTextField? (20 个回答) It's possible i
我使用戴尔 XPS M1710。笔记本电脑的盖子、侧面扬声器和前置扬声器都有灯(3 组灯可以单独调节)和鼠标垫下方的灯。在 BIOS 中,我可以更改这些灯的颜色,至少是每个组。另外,我可以在鼠标垫下打
我知道我可以使用 在 iOS 5 中打开设置应用 [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"prefs://"
我有一个 Django 应用程序,我正在尝试为其设置文档。目录结构如下: - doc - project | - manage.py 我已经设置了路径以便 Sphinx 可以看到东西,但是当我尝试使用
我正在使用 768mb ram 运行 centos 5.5。我一直在日志中获取 server reached MaxClients setting, consider raising the MaxC
我在具有以下配置的服务器内运行了 Drupal 安装: StartServers 5 MinSpareServers 5 MaxSpareServers 15 MaxClien
是否可以使用 Microsoft.Web.Administration 包为给定的 location 配置 asp 设置? 我想以编程方式将以下部分添加到本地 IIS applicationHost.
我一直在阅读为 kube-proxy 提供参数的文档,但没有解释应该如何使用这些参数。我使用 az aks create 创建我的集群使用 azure-cli 程序,然后我获得凭据并使用 kubect
我想知道与在 PHP 中使用 setcookie() 函数相比,在客户端通过 JavaScript 设置一些 cookie 是否有任何明显的优势?我能想到的唯一原因是减少一些网络流量(第一次)。但不是
我有一个按钮可以将 body class 设置为 .blackout 我正在使用 js-cookie设置cookie,下面的代码与我的按钮相关联。 $('#boToggle').on('click'
我有一堆自定义的 HTML div。我将其中的 3 存储在具有 slide 类的 div 中。然后,我使用该幻灯片类调用 slick 函数并应用如下设置: $('.slide').slick({
我正在创建一个应该在 Windows 8(桌面)上运行的应用 我需要: 允许用户使用我的应用启动“文件历史记录”。我需要找到打开“文件历史记录”的命令行。 我需要能够显示“文件历史记录”的当前设置。
我刚买了一台新的 MacBook Pro,并尝试在系统中设置 RVM。我安装了 RVM 并将默认设置为 ➜ rvm list default Default Ruby (for new shells)
由于有关 Firestore 中时间戳行为即将发生变化的警告,我正在尝试更改我的应用的初始化代码。 The behavior for Date objects stored in Firestore
在 ICS 中,网络 -> 数据使用设置屏幕中现在有“限制后台数据”设置。 有没有办法以编程方式为我的应用程序设置“限制后台数据”? 或 有没有办法为我的应用程序调出具有选项的“数据使用”设置? 最佳
我正在尝试使用 NextJS 应用程序设置 Jest,目前在 jest.config.js : module.exports = { testPathIgnorePatterns: ["/.n
我最近升级到 FlashDevelop 4,这当然已经将我之前的所有设置恢复到原来的状态。 我遇到的问题是我无法在新设置窗口的哪个位置找到关闭它在方括号、大括号等之前插入的自动空格的选项。 即它会自动
有没有办法以编程方式访问 iPhone/iPod touch 设置? 谢谢。比兰奇 最佳答案 大多数用户设置可以通过读取存储在 /User/Library/Preferences/ 中的属性列表来访问
删除某些值时,我需要选择哪些设置来维护有序队列。我创建了带有自动增量和主键的 id 的表。当我第一次插入值时,没问题。就像 1,2,3,4,5... 当删除某些值时,顺序会发生变化,例如 1,5,3.
我正在尝试设置示例 Symfony2 项目,如此处所示 http://symfony.com/doc/current/quick_tour/the_big_picture.html 在访问 confi
我是一名优秀的程序员,十分优秀!