UI
文章平均质量分 77
VisionBao
这个作者很懒,什么都没留下…
展开
-
UI 常用方法总结之--- UIWindow UIView
UIWindow (UIView) 1.创建一个uiwindow对象 self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; 2.backgroundColor背景颜色 3.- (void)makeKeyAndVisible;eg: [self.wind...原创 2014-10-06 11:26:03 · 708 阅读 · 0 评论 -
UI 常用方法总结之--- UIScrollView
UIScrollView : UIView <NSCoding> 1.创建一个UIScrollView对象UIScrollView *scrollView = [[UIScrollView alloc]initWithFrame:CGRectMake(20, 20, 280, 280)]; 2.backgroundColor背景颜色 3.contentS...原创 2014-10-13 08:23:27 · 798 阅读 · 0 评论 -
UI 常用方法总结之--- UINavigationController
UINavigationController : UIViewController 1.创建UINavigationController对象UINavigationController *navCV = [[UINavigationController alloc]initWithRootViewController:mainVC]; 通常和self.window.rootVi...原创 2014-10-13 08:28:45 · 670 阅读 · 0 评论 -
UI 常用方法总结之--- UIPageControl
UIPageControl : UIControl 1.创建一个UIPageControl对象UIPageControl *pageControl = [[UIPageControl alloc]initWithFrame:CGRectMake(20, 20, 280, 50)]; 2.backgroundColor背景颜色 3.numberOfPages显示...原创 2014-10-13 08:27:08 · 514 阅读 · 0 评论 -
UI 常用方法总结之---各个手势种类 UIGestureRecognizer
手势种类UIGestureRecognizer : NSObject1.- (void)addGestureRecognizer:(UIGestureRecognizer*)gestureRecognizer附加一个手势识别器到视图。一.点击 tapUITapGestureRecognizer : UIGestureRecognizer1.创建一个UITapGestureR...原创 2014-10-11 20:06:11 · 797 阅读 · 0 评论 -
UI 常用方法总结之--- UIImageView UISlider UISegmentedControl
UIImageView : UIView 1.animationImages图像数组2.- (void)startAnimating;开始动画3.- (void)stopAnimating;停止动画4.- (BOOL)isAnimating;返回一个布尔值,该值指示动画是否正在运行。 UISlider : UIControl &l...原创 2014-10-11 20:06:41 · 626 阅读 · 0 评论 -
UI 常用方法总结之--- UIViewController UIResponder
UIViewController : UIResponder <NSCoding, UIAppearanceContainer, UITraitEnvironment, UIContentContainer> 关于UIViewController生命周期loadView -> viewDidLoad -> viewWillAppear -> viewDid...原创 2014-10-11 20:01:41 · 753 阅读 · 0 评论 -
UI UI基本控件
//// VisionAppDelegate.m// UI基本空间// Copyright (c) 2014年 Vision. All rights reserved.//#import "VisionAppDelegate.h"@implementation VisionAppDelegate- (BOOL)application:(UIApplication *)ap原创 2014-09-29 15:52:32 · 687 阅读 · 0 评论 -
UI UIView
//// VisionAppDelegate.m// UIView_09_25//// Copyright (c) 2014年 Vision. All rights reserved.//#import "VisionAppDelegate.h"@implementation VisionAppDelegate- (BOOL)application:(UIApplica原创 2014-09-29 15:49:20 · 506 阅读 · 0 评论 -
UI 自定义view
//// VisionAppDelegate.m// 自定义view//// Copyright (c) 2014年 Vision. All rights reserved.//#import "VisionAppDelegate.h"#import "VisionLTView.h"@implementation VisionAppDelegate//应用程序加载完成原创 2014-09-29 16:10:18 · 476 阅读 · 0 评论 -
UI 常用方法总结之--- UIButton UIAlertView
UIButton : UIControl <NSCoding> 1.创建一个UIButton对象UIButton *button = [UIButton buttonWithType:UIButtonTypeSystem];button.frame = CGRectMake(30, 140, 280, 30); 2.- (void)setTitle:(NSStr...原创 2014-10-06 11:44:48 · 541 阅读 · 0 评论 -
UI 常用方法总结之--- UILabel UITextField
UILabel : UIView <NSCoding>1.创建一个UILabel对象UILabel *label = [[UILabel alloc]initWithFrame:CGRectMake(30, 30, 280, 60)]; 2.backgroundColor背景颜色 3.text显示的文本信息eg:label.text = @"显示的文...原创 2014-10-06 11:39:41 · 771 阅读 · 0 评论 -
UI 常用方法总结之--- UITableView
转载请注明出处:http://blog.csdn.net/qq11231325UITableView : UIScrollView <NSCoding> 1.创建一个UITableView对象ITableView *tableView = [[UITableView alloc]initWithFrame:[[UIScreen mainScreen] bounds]...原创 2014-10-18 11:00:45 · 2990 阅读 · 1 评论