系统字体
+ ?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
|
Button
1.
?
1 2 3 4 5 6 7 |
|
2.
?
1 2 3 4 5 6 7 8 9 10 |
|
3.关于UIButton,既可以采用setBackgroundImage来设置底部图片,同时也可以采用
setImage方法;
两者还是有一定区别的;
首先setBackgroundImage,image会随着button的大小而改变,图片自动会拉伸来适应button的大小,这个时候当然可以设置button的title,image不会挡住title;
相反的的setImage,图片不会进行拉伸,原比例的显示在button上,此时再设置title,title将无法显示,因此可以根据需求选中方法;
4.
UIButton点击后改变背景的方法
?
1 2 3 4 5 6 7 8 9 10 11 12 |
|
一个uiview上多个button,如何判断是哪个按钮被点击了
UIButton
*button = (UIButton *)sender;
1.根据button.tag来区分
2.或者根据button的title
/****************Label****************************/
label中显示不同颜色的字以及不同字体,字体高亮,Diy
label
http://www.cocoachina.com/bbs/read.php?tid=69385&keyword=label
改变UILabel里的一段文字的颜色
1.core text
2.用NSAttributedString ,...setAttributedText:
给UILabel的文本添加阴影效果
Lable.shadowColor
= color;
Lable.shadowOffset = CGSizeMake(0,
-1.0);
下拉框的实现
UITableView + UIButton + UILabel
http://www.cocoachina.com/bbs/read.php?tid=110202&keyword=label
UIlabel旋转90度
lb.transform=CGAffineTransformMakeRotation(M_PI/2);
button取标题值赋值给label
label.text =
button.currenTitle
-(IBAction)buttonClicked:(id)sender{
UIButton
*button =
(UIButton*)sender; //得到你点击的button
NSString
*buttonTitle =
button.titleLabel.text; //得到button的title并赋值给string类型的buttonTitle
(比如你的label名字就叫label的话)
label.text
= buttonTitle; //给label赋值
}
如何将UILabel中的文字变链接? FromCOCOchina
自己定义一个类urlLabel
?
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 49 50 51 52 |
|
完整的超链接的UILabel教程、
http://www.cocoachina.com/bbs/read.php?tid-60903.html
UILabel 触摸操作
http://www.cocoachina.com/bbs/read.php?tid=48942&keyword=label
label实时显示textfield的输入
UILabel *textLabel;
UITextField *textField;
-(BOOL) textField:(UITextField *)textField
shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString
*)string
{
textLabel.text = [textField.text
stringByAppendingString:string];
return YES;
}
iOS UIButton按钮,码迷,mamicode.com