Believe in your own future, will thank yourself right now Sinner Yun

Sinner_Yun

上一页 1 ··· 6 7 8 9 10 11 12 13 下一页

2014年4月8日

音频

摘要: 音频 #import <AVFoundation/AVFoundation.h> 一,点不同按键取不同字典 二,根据获取到的字典取图片数组,作为图片动画 三,取声音数组(需要判断有无),随机,播放 //把本地文件地址转成url NSURL *url = [NSURL fileURLWithPath: 阅读全文

posted @ 2014-04-08 20:03 Sinner_Yun 阅读(377) 评论(0) 推荐(0) 编辑

2014年4月7日

XML

摘要: XML XML的设计主要是用来描述⼀些信息,并且进⾏行信息的传送,与HTML不同,HTML主要用来显示信息,而XML主要用来传递信息。 XML(eXtensible Markup Language) 可扩展标记语言,计算机之间使用这些标记理解并处理各种信息,XML⽂档可以由 XML的声明开始,XML 阅读全文

posted @ 2014-04-07 19:42 Sinner_Yun 阅读(287) 评论(0) 推荐(0) 编辑

2014年4月3日

POST

摘要: /*(http)get请求和post请求的区别: *1、post请求 请求地址和参数分离,比get更加安全 *2、get请求只能获取服务器的数据不能上传文件,而post两者都可以 *3、get请求在浏览器中字符串长度最大限制为1024,post 没有限制 *4、post 上传文件 文件大小不能超过4 阅读全文

posted @ 2014-04-03 20:23 Sinner_Yun 阅读(430) 评论(0) 推荐(0) 编辑

2014年4月2日

界面,数据下载

摘要: // MyTabBar.m #import "MyTabBar.h" #import "LimitViewController.h" #import "SellViewController.h" #import "FreeViewController.h" #import "SabojectView 阅读全文

posted @ 2014-04-02 20:57 Sinner_Yun 阅读(284) 评论(0) 推荐(0) 编辑

2014年4月1日

异步下载

摘要: 初步异步下载 url定义:在WWW上,每一信息资源都有统一的且在网上唯一的地址,该地址就叫URL(UniformResourceLocator,统一资源定位符),它是WWW的统一资源定位标志,就是指网络地址。 /* http://(客户端与服务端进行数据交互,遵循的协议,超文本传输协议) * 10. 阅读全文

posted @ 2014-04-01 20:47 Sinner_Yun 阅读(446) 评论(0) 推荐(0) 编辑

2014年3月31日

Cell

摘要: #import "ViewController.h" #import "BookCell.h" #import "AdCell.h" @interface ViewController ()<UITableViewDelegate,UITableViewDataSource> { NSMutable 阅读全文

posted @ 2014-03-31 20:09 Sinner_Yun 阅读(307) 评论(0) 推荐(0) 编辑

2014年3月30日

循环&信息添加&颜色修改

摘要: #import "AViewController.h" @interface AViewController () <UIActionSheetDelegate> @end @implementation AViewController - (id)initWithNibName:(NSString 阅读全文

posted @ 2014-03-30 21:02 Sinner_Yun 阅读(229) 评论(0) 推荐(0) 编辑

通讯录

摘要: #import <UIKit/UIKit.h> @interface RootViewController : UIViewController <UITableViewDataSource,UITableViewDelegate> @end #import "RootViewController. 阅读全文

posted @ 2014-03-30 20:59 Sinner_Yun 阅读(205) 评论(0) 推荐(0) 编辑

图片循环

摘要: @interface ViewController ()<UIScrollViewDelegate> { NSInteger page; } @end @implementation ViewController - (void)viewDidLoad { [super viewDidLoad]; 阅读全文

posted @ 2014-03-30 20:57 Sinner_Yun 阅读(191) 评论(0) 推荐(0) 编辑

多删搜索

摘要: 多选删除,搜索 *****多选删除***** - (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath { //2个 阅读全文

posted @ 2014-03-30 20:56 Sinner_Yun 阅读(269) 评论(0) 推荐(0) 编辑

2014年3月29日

图片滚动

摘要: #import "FIrstViewController.h" @interface FIrstViewController () { UIScrollView *mainSV; } @end @implementation FIrstViewController - (id)initWithNib 阅读全文

posted @ 2014-03-29 20:50 Sinner_Yun 阅读(197) 评论(0) 推荐(0) 编辑

TableView

摘要: 表格视图 UITableView tableview的大部分操作都是在代理方法中进行的!!! //UITableViewCell 视图,tableView中每一行都是一个UITableViewCell对象 //indexPath (section,row,用于描述此行数据位于第几分区,第几行) // 阅读全文

posted @ 2014-03-29 20:47 Sinner_Yun 阅读(320) 评论(0) 推荐(0) 编辑

2014年3月26日

相册跳转

摘要: #import "FirstViewController.h" #import "SecondViewController.h" #import "Myimageview.h" @interface FirstViewController () @end @implementation FirstV 阅读全文

posted @ 2014-03-26 20:53 Sinner_Yun 阅读(243) 评论(0) 推荐(0) 编辑

滑动视图

摘要: 【UIScrollView】 //内容区域 @property(nonatomic) CGSize contentSize; //偏移 @property(nonatomic) CGPoint contentOffset; //弹簧效果 @property(nonatomic) BOOL bounc 阅读全文

posted @ 2014-03-26 20:46 Sinner_Yun 阅读(217) 评论(0) 推荐(0) 编辑

2014年3月25日

拼图

摘要: #import "ViewController.h" @interface ViewController () @end @implementation ViewController - (UIImage *)clipImage:(UIImage *)image inRect:(CGRect)rec 阅读全文

posted @ 2014-03-25 21:40 Sinner_Yun 阅读(239) 评论(0) 推荐(1) 编辑

上一页 1 ··· 6 7 8 9 10 11 12 13 下一页

导航