- (void)viewDidLoad { UILabel *label1 = [[UILabel alloc]initWithFrame:CGRectMake(50.0, 20.0, 200.0, 50.0)]; UILabel *label2 = [[UILabel alloc]in...
分类:
其他好文 时间:
2015-05-31 15:21:32
阅读次数:
76
IOS7 之前截取了部分@interface ZGViewCell ()@property (nonatomic, strong) UILabel *nameLable;@end- (UILabel *)nameLable{ if (_nameLable == nil) { _nameLab...
分类:
移动开发 时间:
2015-05-28 23:04:38
阅读次数:
298
UILable是iPhone界面最基本的控件,主要用来显示文本信息。 基本的使用方法: UILabel *label = [[UILabel alloc]initWithFrame:CGRectMake(x,y,w,h)]; //初始化 label.center = self.windo...
分类:
移动开发 时间:
2015-04-30 06:21:24
阅读次数:
201
UILabel *lLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 19, 105, 1)]; lLabel.backgroundColor = getColorWithRGB(40, 125, 244, 1.0); [prot...
分类:
其他好文 时间:
2015-04-26 16:24:04
阅读次数:
145
@IBAction func buttonClick_LabelCtrl(sender: AnyObject) {//定义CGRect来初始化UILable var frame: CGRect = CGRect(x: 50, y: 50, width: 200, height: 200) ...
分类:
编程语言 时间:
2015-04-26 10:40:14
阅读次数:
144
适用于iOS6以后NSString *tip = @"UILable高度自适应,UILable高度自适应,UILable高度自适应";UILabel label_2 = [[UILabel alloc] initWithFrame:CGRectMake(20, 100, 200, 30)];labe...
分类:
移动开发 时间:
2015-04-24 21:01:26
阅读次数:
149
// Created By 郭仔 2015年04月10日17:48:32
今天还要买两张票,周天回家周天在回来!不管什么事,请记住: 有我在!!!
祝:天佑郭家!!!
==========================================================================
Window窗口:
window是窗?口,每个app都需要借助wi...
分类:
其他好文 时间:
2015-04-10 20:18:00
阅读次数:
113
系统剪贴板的直接调用
其实整个过程非常的简单,我就用我写的一个自定义UILable来说明调用系统剪贴板。
首先,因为苹果只放出来了 UITextView,UITextField,webView三个控件的剪贴板,所以一般控件的剪贴板都被禁用了,因此,我们首先要做的就是把这属性放出来,其实就是实现三个简单的方法,方法如下:
响应方法
- (BOOL)ca...
分类:
移动开发 时间:
2015-04-09 15:29:54
阅读次数:
296
·UILable是iPhone界面最基本的控件,主要用来显示文本信息。
·常用属性和方法有:
1、创建
CGRect rect = CGRectMake(100, 200, 50, 50);
UILabel *label = [[UILabel alloc] initWithFrame:rect];
2、text //设置和读取文本内容,默认为nil
label.text = @”文本...
分类:
其他好文 时间:
2015-04-08 16:31:25
阅读次数:
193
·UILable是iPhone界面最基本的控件,主要用来显示文本信息。
·常用属性和方法有:
1、创建
CGRect rect = CGRectMake(100, 200, 50, 50);
UILabel *label = [[UILabel alloc] initWithFrame:rect];
2、text //设置和读取文本内容,默认为nil
label.text = @”文本...
分类:
移动开发 时间:
2015-04-04 15:15:07
阅读次数:
104