- 博客(81)
- 资源 (8)
- 收藏
- 关注
原创 多线程的简单使用
//// ViewController.m// 多线程处理//// Created by apple on 16/6/2.// Copyright © 2016年 李重阳. All rights reserved.//#import "ViewController.h"static NSInteger const AddTag = 100;@interface ViewContr
2016-06-02 18:19:26
557
转载 橡皮擦
- (void)viewDidLoad { [super viewDidLoad]; //初始化要显示在下面的提示label UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(100, 100, 200, 50)]; label.textAlignment = NSTextAlignmentCente
2016-06-02 15:35:27
505
转载 CGPath CGContext UIBezierPath的比较
//// PathView.m// Qauze//// Created by apple on 16/6/2.// Copyright © 2016年 李重阳. All rights reserved.//#import "PathView.h"@implementation PathView- (instancetype)initWithFrame:(CGRect)frame
2016-06-02 15:32:43
961
转载 断点续传
//// ViewController.m// 断点续传//// Created by apple on 16/5/31.// Copyright © 2016年 李重阳. All rights reserved.//#import "ViewController.h"@interface ViewController ()<NSURLSessionDelegate>@prope
2016-05-31 13:14:48
418
原创 交换方法
#import "UIImage+AddImageFunc.h"#import <objc/runtime.h>@implementation UIImage (AddImageFunc)+ (void)load { Method methodOfOrigin = class_getClassMethod(self, @selector(imageNamed:)); Method m
2016-05-30 18:25:24
764
原创 用runtime归档、解档、copy
1.我定义一个TestModel //// TestModel.h// runTime//// Created by apple on 16/5/27.// Copyright © 2016年 李重阳. All rights reserved.//#import <Foundation/Foundation.h>#import <objc/runtime.h>@interfac
2016-05-27 17:46:48
533
原创 下载老版本的xcode
7.2.1: https://developer.apple.com/services-account/download?path=/Developer_Tools/Xcode_7.2.1/Xcode_7.2.1.dmg7.2 : https://developer.apple.com/services-account/download?path=/Developer_Tools/Xcode_
2016-04-23 12:40:30
499
转载 资料整理
1.MJEXtension的使用方法 http://www.jianshu.com/p/93c242452b9b) 2.MJExtension的下载:https://github.com/CoderMJLee/MJExtension
2016-04-20 11:42:51
286
原创 非arc 转 arc
遇到 最大的bug ,就是出现 下面的错: fatal error: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo: can’t figure out the architecture type of: /Users/apple/Library/Develope
2016-04-16 18:28:32
344
原创 环信及时通讯的整合SDK
导入 EaseMobSDK (只包含 libEaseMobClientSDK.a 可以聊天 语音的)导入的库依赖 3.Other link 设置 4.head search 设置
2016-04-15 12:49:29
423
原创 iOS 一些关键描述字
1. NS_DEPRECATED_IOS(2_0, 6_0) : 2_0表示引入的iOS版本号,6_0表示被废弃时的iOS版本。2. NS_AVAILABLE_IOS(5_0) :这个方法可以在iOS5.0及以后的版本中使用
2016-04-11 17:55:36
357
原创 截图片和保存图片
- (void)wxNavViewDidSelectedRightBarItemWithTag:(NSInteger)tag { //截取当前的一张图片的方法 UIGraphicsBeginImageContext(self.imageView.bounds.size); UIGraphicsBeginImageContextWithOptions(self.imageView
2016-04-01 20:39:11
938
原创 递归8_全排列
static int count = 0;@interface ViewController ()@end@implementation ViewController- (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view, typically from
2016-03-31 18:02:02
409
原创 递归7_旗子的移动问题
static int count = 1;@interface ViewController ()@end@implementation ViewController- (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view, typically from
2016-03-31 17:23:41
927
原创 递归6_简单的0/1背包问题 去除相同的数
static int maxM = 5;static int count = 0;@interface ViewController ()@end@implementation ViewController- (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the v
2016-03-31 16:25:47
509
原创 递归5_简单的0/1背包问题
static int maxM = 5;static int count = 0;@interface ViewController ()@end@implementation ViewController- (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the v
2016-03-31 15:58:09
710
原创 递归4_数组逆序
- (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib. int a[10] = {0,1,2,3,4,5,6,7,8,9}; inversion(10,a);}void inversion(in
2016-03-31 14:38:49
660
原创 递归3_计算多个数字
- (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib. printf("sum = %d",numOfSum(4, 5));}/** * 题目:求s=a+aa+aaa+aaaa+aa...a的
2016-03-31 14:03:20
349
原创 递归二 - 汉诺塔
- (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib. hanNuoTa('A','C','B',3);}void hanNuoTa(char a,char c ,char b,int n) {
2016-03-31 11:49:54
262
原创 递归二 最大公约数
- (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib. printf("最大公约数%d",greatestCommonFactor(98,63));}int greatestCommonFactor(
2016-03-31 11:22:30
261
原创 递归一
//// ViewController.m// 算法测试//// Created by apple on 16/3/30.// Copyright © 2016年 李重阳. All rights reserved.//#import "ViewController.h"int firstCount = 0;int inputNum[3] = {0};@interface Vi
2016-03-31 10:02:27
278
原创 导航条的属性
self.navigationBarHidden = YES; //导航条的隐藏self.interactivePopGestureRecognizer.delegate = nil;//系统的右滑
2016-03-16 21:22:12
407
原创 相册 相机 权限
#pragma mark - actionSheet Delegate- (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex { if(buttonIndex == 0) {//摄像 //相机权限判断 AVAuthorization
2016-03-12 10:16:42
2418
转载 跳转去开启权限
// 跳到相册中 [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"prefs:root=Privacy&path=Photos"]];//prefs 其实是 info 中的 URLScheme
2016-03-11 20:29:41
673
原创 手势的代理方法(解决了 手势和点击cell 的冲突)
#pragma mark - 手势的代理方法(解决了 手势和点击cell 的冲突)- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldReceiveTouch:(UITouch *)touch { // 输出点击的view的类名 //NSLog(@"%@", NSStringFromCla
2016-03-10 15:38:05
1389
原创 xcode 更新问题
当我们在其他人员的电脑开发的时候,当更新xcode 是不知道这个人的appleID 那么我们可以强制更新 1.找到Xcode,右键“显示包内容” 2.找到_MASReceipt文件夹 3.删除它,然后退出重启AppStroe,更新Xcode即可。
2016-01-29 17:49:30
762
原创 UIMenuController 在UIView 上的 显示
1.在某个view 的.m文件中加上- (BOOL)canBecomeFirstResponder{ return YES;}例如写个长按的方法 的代理出来 // 长按钮- (void)m80AttributedLabel:(M80AttributedLabel *)label longPressWtihText:(NSString *)text longPressPoint:(C
2016-01-28 13:38:55
843
原创 IOS7 js 调用IOS
一:自从IOS7 以后JavaScriptCore iOS 和 js的交互就变的简单 这里我主要来说下 JS 调用 IOS 定义一个协议 WXExportProtocol 这个协议是 属于JSExport 协议的。里面有个方法hideMenuBotton,这个方法名是服务器定义好的,如果服务器传一个参数 就定义成- (void)hideMenuBotton:(NSNumber )isHidd
2016-01-21 16:55:05
660
原创 CoreData 简单介绍
一:一个大概的CoreData 的流程 二:初始化CoreData 资源文件 三:封装CoreDataManage /* 1、NSManagedObjectContext :管理对象,上下文,持久性存储模型对象 2、NSManagedObjectModel :被管理的数据模型,数据结构 3、NSPersistentStoreCoordinator :连接数据库的 4、NSManagedO
2016-01-14 19:47:59
318
原创 GCD的常用方法
//GCD 可以 用arc 里面的自动释放内存 //这个是全局并发队列 dispatch_queue_t global_queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0); dispatch_async(global_queue, ^{ // 异步去处理一个事情
2016-01-13 18:21:53
580
原创 GCD自定义的队列 和 全局队列的区别
// 创建一个GCD 的队列(这个是串行队列) dispatch_queue_t queue = dispatch_queue_create("com.lcy.queue", NULL); /** 自己创建的 虽然 也会走 异步操作 但是 可以看出 不管怎么走 都会 是 下一个操作总是依赖上一个操作 2016-01-13 18:13:25.814 多线程[9617:
2016-01-13 18:20:54
2385
原创 NSOperationQueue 依赖操作
NSOperationQueue * operationQueue = [[NSOperationQueue alloc]init]; NSInvocationOperation * invocationOp = [[NSInvocationOperation alloc]initWithTarget:self selector:@selector(invocationRun) object:
2016-01-13 17:36:24
373
原创 自定义 NSOperation
// 自定义NSOperation 的时候 我们需要 重载- (void)main 方法- (void)main { @autoreleasepool { //这里就只能用一个同步线程的方法去处理一个费时间的操作(比如要加载一个图片),因为如果是异步的话 就会导致访问不到当前的释放池 //在执行完成后需要 用下面这个方法通过代理回调 //performSe
2016-01-13 17:17:07
323
原创 NSOperation
// 同步执行的代码NSInvocationOperation * invocationOp = [[NSInvocationOperation alloc]initWithTarget:self selector:@selector(invocationRun) object:nil]; [invocationOp start]; NSBlockOperation * blockOp = [NS
2016-01-13 17:09:02
221
原创 NSThread的一些方法
NSLog(@"1"); [self performSelectorOnMainThread:@selector(threadRun:) withObject:@"lichongyang" waitUntilDone:NO]; NSLog(@"3");// 这里如果waitUntilDone:NO 的时候 打印的结果是 1、3、2// 如果 waitUntilDone:YES 的时
2016-01-13 16:42:11
209
原创 CAKeyFrameAnimation 的简单用法
CAKeyFrameAnimation: 我们可以用 CGPath 来执行动画的轨迹- (void)positionLayer { //创建路径 UIGraphicsBeginImageContext(self.view.bounds.size); CGContextRef contextRef = UIGraphicsGetCurrentContext(); CGM
2016-01-12 16:55:17
541
Apple_Debugging_and_Reverse_Engineering_v3.0.epub
2019-10-10
Vue.js权威指南_张耀春;黄轶;王静;苏伟;王瑾;殷献勇(著) _电子工业出版社.pdf.zip
2019-05-17
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人