iOS前期训练
文章平均质量分 76
Clare_BiJuan
iOS工程师/项目经理
展开
-
UI06_UIPageControl
//// LTView.h// UI06_UIPageControl//// Created by dllo on 15/8/5.// Copyright (c) 2015年 Clare. All rights reserved.//#import @interface LTView : UIView@property(nonatomic, retain)UILab原创 2015-08-06 09:07:47 · 629 阅读 · 0 评论 -
iOS前期OC训练OC_07NSDate
//// main.m// OC07_NSDate//// Created by dllo on 15/7/23.// Copyright (c) 2015年 Clare. All rights reserved.//#import int main(int argc,const char * argv原创 2015-07-23 20:35:13 · 581 阅读 · 0 评论 -
iOS前期OC训练OC_通讯录
//// main.m// OC_通讯录//// Created by dllo on 15/7/21.// Copyright (c) 2015年 Clare. All rights reserved.//#import #import "Contact.h"int main(int argc,const原创 2015-07-23 20:30:31 · 1083 阅读 · 0 评论 -
iOS前期OC训练OC_06数组
//// main.m// OC06_数组//// Created by dllo on 15/7/20.// Copyright (c) 2015年 Clare. All rights reserved.//#import #import "Student.h"#import "Book.h"int原创 2015-07-23 20:29:17 · 1420 阅读 · 0 评论 -
iOS前期OC训练OC_05省市区数组
//// main.m// OC05_数组省市区//// Created by dllo on 15/7/21.// Copyright (c) 2015年 Clare. All rights reserved.//#import int main(int argc,const char * argv[原创 2015-07-23 09:08:12 · 623 阅读 · 1 评论 -
UI11_UITabBar
//// AppDelegate.m// UI11_UITabBar//// Created by dllo on 15/8/12.// Copyright (c) 2015年 Clare. All rights reserved.//#import "AppDelegate.h"#import "FirstViewController.h"#import "Secon原创 2015-08-13 21:25:12 · 493 阅读 · 0 评论 -
UI10_tableview的编辑
//// MainViewController.m// UI10_tableview的编辑//// Created by dllo on 15/8/11.// Copyright (c) 2015年 Clare. All rights reserved.//#import "MainViewController.h"@interface MainViewControll原创 2015-08-13 21:22:47 · 416 阅读 · 0 评论 -
UI11_BLOCK传值
//// AppDelegate.m// UI11_BLOCK传值//// Created by dllo on 15/8/12.// Copyright (c) 2015年 Clare. All rights reserved.//#import "AppDelegate.h"#import "MainViewC原创 2015-08-13 21:25:48 · 510 阅读 · 0 评论 -
UI09_多种TableView
//// AppDelegate.m// UI09_多种TableView//// Created by dllo on 15/8/10.//// MainViewController.m// UI09_多种TableView//// Created by dllo on 15/8/10.// Copyright (c) 2015年 Clare. All right原创 2015-08-13 21:10:31 · 450 阅读 · 0 评论 -
UI0_带分区的省市区
//// AppDelegate.m// UI0_带分区的省市区//// Created by dllo on 15/8/11.// Copyright (c) 2015年 Clare. All rights reserved.//#import "AppDelegate.h"#import "MainViewController.h"@interface AppDel原创 2015-08-13 21:20:41 · 464 阅读 · 0 评论 -
UI0810通讯录加强版
//// AppDelegate.m// UI0810通讯录加强版//// Created by dllo on 15/8/10.// Copyright (c) 2015年 Clare. All rights reserved.//#import "AppDelegate.h"#import "MainViewController.h"@interface AppDe原创 2015-08-13 21:19:13 · 577 阅读 · 0 评论 -
UI09_自定义cell
//// AppDelegate.m// UI09_自定义cell//// Created by dllo on 15/8/10.// Copyright (c) 2015年 Clare. All rights reserved.//#import "AppDelegate.h"#import "MainViewController.h"@interface AppDe原创 2015-08-13 21:15:31 · 468 阅读 · 0 评论 -
NSString练习
//// main.m// NSString//// Created by dllo on 15/7/20.// Copyright (c) 2015年 Clare. All rights reserved.//#import int main(int argc,const char * argv[])原创 2015-07-20 20:56:16 · 498 阅读 · 0 评论 -
NSString的使用
1.字面量:一般是固定不变的用双引号引起来,双引号中的内容可以自己进行任意的定义在OC中一般通过str.length来获取指定的下标的字符内容.注意在OC中如果想要打印汉子只要用%加上大写的C就行,%c则是用来打印其他字符.当程序出现错误的时候,在下方的执行框中找到reason开始查找问题,但是一旦数组越界程序会立刻崩溃,所以数组要严谨不越界用便利构造器和初始化方法原创 2015-07-20 17:35:39 · 496 阅读 · 1 评论 -
iOS前期OC训练OC_02继承,便利构造器,初始化方法
//// main.m// OC03_继承, 便利构造器,初始化方法//// Created by dllo on 15/7/16.// Copyright (c) 2015年 Clare. All rights reserved.//#import #import "RoadblockZombie.h"原创 2015-07-16 20:57:51 · 576 阅读 · 0 评论 -
iOS前期OC训练OC_02可见度,方法
//// main.m// OC02_可见度,方法//// Created by dllo on 15/7/16.// Copyright (c) 2015年 Clare. All rights reserved.//#import #import "Student.h"#import "AudiCar.h原创 2015-07-16 20:51:59 · 672 阅读 · 1 评论 -
UI_最基础的登陆界面
#import "AppDelegate.h"@interface AppDelegate ()@end@implementation AppDelegate- (void)dealloc{ [_window release]; [super dealloc];}- (BOOL)ap原创 2015-07-30 08:36:30 · 605 阅读 · 0 评论 -
iOS前期OC训练OC_06字典
//// main.m// OC06_字典//// Created by dllo on 15/7/21.// Copyright (c) 2015年 Clare. All rights reserved.//#import int main(int argc,const char * argv[])原创 2015-07-23 20:26:23 · 530 阅读 · 0 评论 -
UIButton和UITextfield
//// AppDelegate.m// UI02_Button和Textfield//// Created by dllo on 15/7/30.// Copyright (c) 2015年 Clare. All rights reserved.//#import "AppDelegate.h"@interface AppDelegate ()@property(nonatom原创 2015-08-06 08:26:21 · 565 阅读 · 0 评论 -
循环滚动
//// MainViewController.m// InfiniteScrollVIew//// Created by dllo on 15/8/5.// Copyright (c) 2015年 Clare. All rights reserved.//#import "MainViewController.h"#define WIDTH self.view.fram原创 2015-08-06 09:01:38 · 403 阅读 · 0 评论 -
UISwitch
//// MainViewController.m// UISwitch//// Created by dllo on 15/8/3.// Copyright (c) 2015年 Clare. All rights reserved.//#import "MainViewController.h"@interface MainViewController ()@en原创 2015-08-06 08:50:08 · 388 阅读 · 0 评论 -
UI04_Touch
//// AppDelegate.h// UI04_Touch//// Created by dllo on 15/8/3.// Copyright (c) 2015年 Clare. All rights reserved.//#import @interface AppDelegate : UIResponder @property (strong, nonato原创 2015-08-06 08:39:56 · 460 阅读 · 0 评论 -
UI04_Delegate
//// AppDelegate.h// UI04_Delegate//// Created by dllo on 15/8/3.// Copyright (c) 2015年 Clare. All rights reserved.//#import @interface AppDelegate : UIResponder @property (strong, non原创 2015-08-06 08:44:25 · 550 阅读 · 0 评论 -
UI0805_CellView
将自定义的CellView即LTView与屏幕滚动等联系//// CellView.h// UI0805_CellView//// Created by dllo on 15/8/5.// Copyright (c) 2015年 Clare. All rights reserved.//#import @interface CellView : UIView@pro原创 2015-08-06 09:10:15 · 437 阅读 · 0 评论 -
切换图片
//// MainViewController.m// ChangePic//// Created by dllo on 15/8/4.// Copyright (c) 2015年 Clare. All rights reserved.//#import "MainViewController.h"@interface MainViewController ()@pr原创 2015-08-06 08:59:20 · 383 阅读 · 0 评论 -
UI06_ScrollviewLoop
==//// MainViewController.m// UI06_ScrollViewLoop//// Created by dllo on 15/8/5.// Copyright (c) 2015年 Clare. All rights reserved.//#import "MainViewController.h"#define WIDTH self.view.原创 2015-08-06 09:04:08 · 413 阅读 · 0 评论 -
UI0804_Palette
调色块//// MainViewController.m// UI0804_PaletteUI0804_//// Created by dllo on 15/8/4.// Copyright (c) 2015年 Clare. All rights reserved.//#import "MainViewController.h"@interface MainViewCo原创 2015-08-06 08:56:36 · 400 阅读 · 0 评论 -
UI05_手势识别器
//// MainViewController.m// UI05_手势识别器//// Created by dllo on 15/8/4.// Copyright (c) 2015年 Clare. All rights reserved.//#import "MainViewController.h"@interface MainViewController ()@原创 2015-08-06 08:51:23 · 490 阅读 · 0 评论 -
UI04_TargetAction
//// AppDelegate.m// UI04_Target-Action//// Created by dllo on 15/8/3.// Copyright (c) 2015年 Clare. All rights reserved.//#import "AppDelegate.h"#import "MainViewController.h"@interface原创 2015-08-06 08:48:31 · 366 阅读 · 0 评论 -
UI_UILTView
//// AppDelegate.h// UI03_LTView//// Created by dllo on 15/7/31.// Copyright (c) 2015年 Clare. All rights reserved.//#import @interface AppDelegate : UIResponder @property (strong, nonat原创 2015-08-06 08:34:58 · 381 阅读 · 0 评论 -
UI_UIITextField
//// AppDelegate.h// UI02_UITextField//// Created by dllo on 15/7/30.// Copyright (c) 2015年 Clare. All rights reserved.//#import @interface AppDelegate :原创 2015-08-06 08:21:53 · 526 阅读 · 0 评论 -
UI0805_Page
在滚动屏幕上添加pagecontrol实现点随图动,图随点动,以及自动滚动等//// MainViewController.m// UI0805_page//// Created by dllo on 15/8/5.// Copyright (c) 2015年 Clare. All rights reserved.//#import "MainViewController.原创 2015-08-06 09:12:42 · 360 阅读 · 0 评论 -
UI06_UIScrollview
//// MainViewController.m// UI06_UIScrollView//// Created by dllo on 15/8/5.// Copyright (c) 2015年 Clare. All rights reserved.//#import "MainViewController.h"#define WIDTH self.view.fram原创 2015-08-06 09:05:52 · 611 阅读 · 0 评论 -
UI05_Control
//// MainViewController.m// UI05_Control//// Created by dllo on 15/8/4.// Copyright (c) 2015年 Clare. All rights reserved.//#import "MainViewController.h"#import @interface MainViewContro原创 2015-08-06 08:52:59 · 359 阅读 · 0 评论 -
UI03_UIViewController视图控制器
//// AppDelegate.m// UI03_UIViewController视图控制器//// Created by dllo on 15/7/31.// Copyright (c) 2015年 Clare. All rights reserved.//#import "AppDelegate.h" // 当前应用程序的总代理人#import "RootViewC原创 2015-08-06 08:37:51 · 453 阅读 · 0 评论 -
登陆界面的完善
// // AppDelegate.m // UI_Login // // Created by dllo on 15/7/30. // Copyright (c) 2015年 Clare. All rights reserved. //import “AppDelegate.h”@interface AppDelegate ()@property(nonatomic, reta原创 2015-08-06 08:30:16 · 693 阅读 · 0 评论 -
UI_UIButton
#import "AppDelegate.h"@interface AppDelegate ()@end@implementation AppDelegate- (void)dealloc{ [_window release]; [super dealloc];}- (B原创 2015-07-30 08:34:08 · 407 阅读 · 0 评论 -
iOS前期OC训练OC_04NSString
//// main.m// OC05_NSString//// Created by dllo on 15/7/20.// Copyright (c) 2015年 Clare. All rights reserved.//#import int main(int argc,const char * ar原创 2015-07-20 17:33:24 · 547 阅读 · 0 评论 -
iOS前期OC训练OC_03:属性
//// main.m// OC04_属性//// Created by dllo on 15/7/17.// Copyright (c) 2015年 Clare. All rights reserved.//#import #import "Person.h"#import "Student.h"原创 2015-07-20 08:42:04 · 665 阅读 · 1 评论 -
C8_指针
//// MyFunction.h// C8_指针//// Created by dllo on 15/7/9.// Copyright (c) 2015年 Clare. All rights reserved.//#import // 声明一个结构体typedef struct student原创 2015-07-14 19:48:36 · 650 阅读 · 0 评论