随笔分类 -  ios-小功能

摘要:快速部署:简单的来说,就是不用更改开发、测试、正式环境下的 url ,来实现在同一台测试手机快速部署三种项目状态. Bundle ID一样只会出现一个app;不一样会出现三个app; 具体步骤: 一、复制 主项目。 1、Duplicate. 二、三处需要改名字. 进行关联plist 三、更新app图 阅读全文
posted @ 2016-11-10 16:57 代码始我快乐 阅读(2381) 评论(0) 推荐(0)
摘要:/* 升序、降序 */ NSArray * array41 = @[@4,@5,@2,@6,@3,@7,@8]; NSArray * array42 = [[NSArray alloc]init]; array42 = [array41 sortedArrayUsingComparator:^NSComparisonResult(id obj1... 阅读全文
posted @ 2016-08-19 15:15 代码始我快乐 阅读(670) 评论(0) 推荐(0)
摘要:// // RootViewController.m #import "RootViewController.h" #import <AudioToolbox/AudioToolbox.h> @interface RootViewController () @end @implementation 阅读全文
posted @ 2016-07-27 17:37 代码始我快乐 阅读(408) 评论(0) 推荐(0)
摘要:// RootViewController.m #import "RootViewController.h" #import <MediaPlayer/MediaPlayer.h> #define PATH @"http://clips.vorwaerts-gmbh.de/big_buck_bunn 阅读全文
posted @ 2016-07-27 17:28 代码始我快乐 阅读(224) 评论(0) 推荐(0)
摘要:#import "RootViewController.h" @interface RootViewController () { UITableView * table; NSMutableArray * dataSource; } @end @implementation RootViewCon 阅读全文
posted @ 2016-07-26 19:48 代码始我快乐 阅读(320) 评论(0) 推荐(0)
摘要:// // RootViewController.m #import "RootViewController.h" @interface RootViewController () @end @implementation RootViewController //创建背景视图 -(void)cre 阅读全文
posted @ 2016-07-26 17:43 代码始我快乐 阅读(315) 评论(0) 推荐(0)