摘要: 1、创建UIScrollView视图: UIScrollView *aScrollView = [[[UIScrollView alloc] initWithFrame:self.view.bounds] autorelease]; aScrollView.backgroundColor = [... 阅读全文
posted @ 2015-10-23 21:26 随心所欲2015 阅读(158) 评论(0) 推荐(0) 编辑
摘要: /Users/xalo/Desktop/模拟图.png 阅读全文
posted @ 2015-10-22 20:44 随心所欲2015 阅读(178) 评论(0) 推荐(0) 编辑
摘要: // 1、轻拍手势识别器的使用 UITapGestureRecognizer *tapGesture=[[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(handleTapGesture:)]; //设置需要... 阅读全文
posted @ 2015-10-22 15:31 随心所欲2015 阅读(122) 评论(0) 推荐(0) 编辑
摘要: #import "MainViewController.h"@interface MainViewController ()@end@implementation MainViewController- (void)viewDidLoad { [super viewDidLoad]; // Do... 阅读全文
posted @ 2015-10-22 15:07 随心所欲2015 阅读(218) 评论(0) 推荐(0) 编辑
摘要: 第一步:创建视图控制器并创建LoginViewController、RegistViewController、PasswordViewController三个控制器:#import "MainViewController.h"#import "LoginViewController.h"#impor... 阅读全文
posted @ 2015-10-17 22:30 随心所欲2015 阅读(218) 评论(0) 推荐(0) 编辑
摘要: 第一步:创建UIView子类PaintView:1、声明属性和方法:#import @interface PaintView : UIView@property(nonatomic,retain)NSMutableArray *allLines;@property(nonatomic,retain)... 阅读全文
posted @ 2015-10-17 12:06 随心所欲2015 阅读(199) 评论(0) 推荐(0) 编辑
摘要: #import "AppDelegate.h"#define kScreenWidth CGRectGetWidth([[UIScreen mainScreen] bounds])#define kScreenHeight CGRectGetHeight([[UIScreen mainScreen]... 阅读全文
posted @ 2015-10-17 11:51 随心所欲2015 阅读(753) 评论(0) 推荐(0) 编辑