自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(14)
  • 资源 (8)
  • 收藏
  • 关注

原创 防止OC 里面的 释放不了的问题

当我们的自定义的view,如果假设要引用superView的时候,只能弱引用,否则会出现释放不了的问题。

2016-03-31 19:31:14 343

原创 递归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 393

原创 递归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 908

原创 递归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 487

原创 递归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 688

原创 递归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 637

原创 递归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 331

原创 递归二 - 汉诺塔

- (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 241

原创 递归二 最大公约数

- (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 244

原创 递归一

//// 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 262

原创 导航条的属性

self.navigationBarHidden = YES; //导航条的隐藏self.interactivePopGestureRecognizer.delegate = nil;//系统的右滑

2016-03-16 21:22:12 382

原创 相册 相机 权限

#pragma mark - actionSheet Delegate- (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex { if(buttonIndex == 0) {//摄像 //相机权限判断 AVAuthorization

2016-03-12 10:16:42 2393

转载 跳转去开启权限

// 跳到相册中 [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"prefs:root=Privacy&path=Photos"]];//prefs 其实是 info 中的 URLScheme

2016-03-11 20:29:41 644

原创 手势的代理方法(解决了 手势和点击cell 的冲突)

#pragma mark - 手势的代理方法(解决了 手势和点击cell 的冲突)- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldReceiveTouch:(UITouch *)touch { // 输出点击的view的类名 //NSLog(@"%@", NSStringFromCla

2016-03-10 15:38:05 1359

Apple_Debugging_and_Reverse_Engineering_v3.0.epub

最新版 支持 IOS12 XCode10 Apple_Debugging_and_Reverse_Engineering_v3

2019-10-10

Vue.js权威指南_张耀春;黄轶;王静;苏伟;王瑾;殷献勇(著) _电子工业出版社.pdf.zip

Vue.js权威指南_张耀春;黄轶;王静;苏伟;王瑾;殷献勇(著) _电子工业出版社.pdf.zip带目录

2019-05-17

PHP7实践指南_O2O网站与App后台开发

PHP7实践指南_O2O网站与App后台开发 , 是epub格式。

2019-03-26

IOS 设计模式 + 代码

IOS 设计模式 + 代码

2019-01-30

Hooper 最新版V4.0(非常GOOD)

Hooper 最新版V4.0,非常好用,欢迎订阅。

2018-12-21

IOS programming

最新版的 ios12 programming;这个是我 最近找的;希望对大家有用

2018-11-07

objc 中国 app 架构

objc 中国 最新版本的 app架构 ,https://objccn.io/products/

2018-11-05

objc中国-swift函数式编程

objc中国-swift函数式编程,可以学习https://objccn.io/products/

2018-11-05

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除