摘要:
UIButton得父类UIControl1)创建UIButton *btn1 = [UIButton buttonWithType:UIButtonTypeRoundedRect]; 风格有如下typedef enum { UIButtonTypeCustom = 0, // 自定义,无风格 UIButtonTypeRoundedRect, // 白色圆角矩形,类似偏好设置表格单元或者地址簿卡片 UIButtonTypeDetailDisclosure, //蓝色的披露按钮,可放在任何文字旁 ... 阅读全文
摘要:
UIView表示屏幕上的一块矩形区域,它在App中占有绝对重要的地位,因为IOS中几乎所有可视化控件都是UIView的子类。负责渲染区域的内容,并且响应该区域内发生的触摸事件UIView的功能1.管理矩形区域里的内容2.处理矩形区域中的事件3.子视图的管理 4.还能实现动画 UIView的子类也具有这些功能下图就是视图的内层次 1)三个结构体CGPoint、CGSize、CGRect1. CGPointstruct CGPoint { CGFloat x; CGFloat y; }; typedef struct CGPoint CGPoi... 阅读全文
摘要:
这些是在CGGeometry.h里的CGPoint、CGSize、CGRect、CGRectEdge实际上都是结构体struct CGPoint { CGFloat x; CGFloat y;};typedef struct CGPoint CGPoint; struct CGSize { CGFloat width; CGFloat height;};typedef struct CGSize CGSize;struct CGRect { CGPoint origin; CGSize size;};typedef struct CGRect CGRect;enum CGRectE... 阅读全文
摘要:
UILabel *label = [[UILabel alloc]initWithFrame:CGRectMake(20, 40, 280, 80)]; //创建uilabellabel.backgroundColor = [UIColor grayColor]; //设置背景色label.tag = 91; //设置taglabel.text = @"Hello World"; //设置内容label.font = [UIFont fontWithName:@"Arial" size:30]; //设置内容字体和字体大小label.adjustsFon 阅读全文
摘要:
在.h文件中声明:@interface ProtocolViewController :UIViewController<UITextViewDelegate>{ UITextView *textView; }@property (nonatomic,retain)UITextView *textView;@end或UITextView *textView = [[UITextViewalloc]initWithFrame:CGRectMake(0, 275, 320, 224)];在.m中初始化:self.textView=[[[UITextView alloc] ini... 阅读全文