YIem`s Blog -心比天高命比纸薄-链接找不到的请在站内搜索内容!
首页
关于
iOS
OC-内存管理-MRC-ARC-alloc retain copy--- release autorelease
由 YIem 撰写于
2016-01-09
浏览:4054 评论:0
// alloc retain copy 引用计数加 1 // release autorelease 引用计数减 1 // 当对象被添进collection类型中时 对象引用计数加 1 // 当对象被移除collection类型中时 对象引用计数减 1 // 当collection类型的数据被销毁时
iOS
OC-排序-简单类型对象的排序-复杂类型对象的排序
由 YIem 撰写于
2016-01-08
浏览:5085 评论:0
/********* 方法2 简单类型对象的排序 ************/if 0// 创建排序对象 // 参数1 - 为简单类型对象可填写nil/@"self" // 为复杂类型对象可填写要进行排序的关键字, 如 按照Person的name成员排序 可填写@"name"; //参数2 - 升序/
iOS
OC-排序-自定义类型对象的排序
由 YIem 撰写于
2016-01-08
浏览:4647 评论:0
.main.m 代码 /********** 自定义类型对象的排序 *****************/ Person *per1 = [[Person alloc] initWithName:@"Long" age:22]; Person *per2 = [[Person alloc] initWithName:@"
iOS
OC-排序-简单对象的排序-OC排序
由 YIem 撰写于
2016-01-08
浏览:4157 评论:0
/*************** 简单对象的排序 *****************/ // 排序 可变数组NSMutableArray *arr = [NSMutableArray arrayWithObjects:@"8", @"2", @"3", @"5", nil];
iOS
OC-集合- 集合 - 集合的元素具有唯一性-常用于判断交/并集等操作
由 YIem 撰写于
2016-01-08
浏览:4969 评论:0
// 集合 - 集合的元素具有唯一性 // 常用于判断交/并集等操作 /// 不可变集合// 创建集合 // 如果有重复元素 只保留一个 eg;@"2", @"2" NSSet *set = [NSSet setWithObjects:@"1",@"2" , @"
iOS
OC- 字典套数组 -- 省市区
由 YIem 撰写于
2016-01-08
浏览:7976 评论:0
OC- 字典套数组 -- 省市区// 获取文件 NSString *str = [NSString stringWithContentsOfFile:@"area.txt" encoding:NSUTF8StringEncoding error:nil]; // 按\n截取 NSArray *line = [str componentsS
iOS
OC-字典-省市区-省数组套省字典套市数组套市字典套区数组
由 YIem 撰写于
2016-01-06
浏览:4940 评论:0
省市区OC-字典-省市区-省数组套省字典套市数组套市字典套区数组数据文件:省市区TXT(数据)文件 NSString *str = [NSString stringWithContentsOfFile:@"area.txt" encoding:NSUTF8StringEncoding error:nil]; NSLog(@"%@
iOS
OC-字典--添加 修改 删除 查询等等
由 YIem 撰写于
2016-01-06
浏览:4673 评论:0
分别有三个文件.mian.mint main(int argc, const char * argv[]) { // 创建学生 Student *stu1 = [[Student alloc]initWithName:@"卞一" sex:@"男" age:@"20"]; Student *stu2
iOS
OC-可变字典(NSMutableDictionary)操作
由 YIem 撰写于
2016-01-06
浏览:4461 评论:0
OC-可变字典(NSMutableDictionary)操作// 可变字典创建 NSMutableDictionary *mdic = [NSMutableDictionary dictionaryWithObjectsAndKeys:@"卞一", @"name", @"男", @"sex
iOS
OC-不可变字典(NSDictionary) 操作
由 YIem 撰写于
2016-01-06
浏览:4563 评论:0
OC-不可变字典(NSDictionary) 操作// 不可变字典 创建 NSDictionary *dic = [NSDictionary dictionaryWithObjectsAndKeys:@"卞一", @"name", @"男", @"sex", @"啪啪啪
iOS
创建可变数和不可变数组的中文创建方法
由 YIem 撰写于
2016-01-05
浏览:3917 评论:0
创建可变数和不可变数组的中文方法// 中文版 NSArray *阿尔 = @[@"AAA"]; NSLog(@"%@", 阿尔); NSLog(@"%ld", 阿尔.count); NSArray *卞一 = @[@"YIem", @"YI", @"
iOS
可变数组和不可变数组的快速创建-修改-赋值-替换-判断等等
由 YIem 撰写于
2016-01-05
浏览:4517 评论:0
可变数组和不可变数组的快速创建-修改-赋值-替换-判断等等NSArray *arr = @[@"aa", @"bb", @"cc", @"dd", @"ff", @"ee", @"gg"]; // 获取数组的元素个数
iOS
可变数组的各种操作,添加-修改-删除-替换
由 YIem 撰写于
2016-01-05
浏览:4539 评论:0
可变数组的各种操作// 可变数组 NSMutableArray *mArr = [NSMutableArray arrayWithObjects:@"aaa", @"bbb", @"ccc", @"ddd", @"eee", nil]; // 添加一个元素 [
iOS
创建不可变数组,对其的各种操作,取值赋值
由 YIem 撰写于
2016-01-05
浏览:3822 评论:0
创建不可变数组,对其的各种操作 // 创建数组 NSArray *arr = @[@"aa", @"bb", @"dd", @"12", @"ff"]; // 获取数组对象个数 NSLog(@"%ld", arr.count); // 获
iOS
OC 数组 创建字符串- 长度- 替换- 比较- 转换-判断
由 YIem 撰写于
2016-01-05
浏览:4816 评论:0
// 1. 创建一个不可变字符串 str // 2. 输出 str 的长度 // 3. 将 str 中的所有 'i' 都替换为 'x' // 4. 比较 str 和 "sample" 字符串的大小, 输出较小的一个. // 5. 将 str 转为可变字符串 mutableStr // 6. 判断 m
iOS
OC 不可变数组的 方法集合
由 YIem 撰写于
2016-01-05
浏览:4757 评论:0
// 获取数组的元素个数( 多用于遍历) NSLog(@"array元素个数: %ld", array.count);/// 获取某一个元素NSString *name = [array objectAtIndex:0]; NSLog(@"array获取某一个元素%@", name); // C 语言形式的取值 NSL
iOS
OC * 向某个下标插入一个元素(insert) * 删除(delete) * 交换(exchange)
由 YIem 撰写于
2016-01-05
浏览:4163 评论:0
/* * 向某个下标插入一个元素(insert) * 删除(delete) * 交换(exchange) */ // 向某个下标插入一个元素 [mutableArr insertObject:@"22" atIndex:2]; NSLog(@"%@", mutableArr); // 删除某个元素 [mutabl
iOS
iOS 判断Objective-C 字符串是否已i开头 you结尾
由 YIem 撰写于
2016-01-04
浏览:4376 评论:0
iOS 判断Objective-C 字符串是否已i开头 you结尾 NSString *str = [NSString stringWithFormat:@"i Love you"]; [str hasPrefix:@"i"] && [str hasSuffix:@"you"
默认分类
迟来的新年祝福,2016年我要好好的
由 YIem 撰写于
2016-01-04
浏览:5033 评论:0
迟来的新年祝福,2016年我要好好的
随便说
2015-12-28-- 今天我降班了,原因是字典和数组传值迷糊了
由 YIem 撰写于
2015-12-28
浏览:4073 评论:0
2015-12-28-- 今天我降班了,原因是字典和数组传值迷糊了然后来了新的班级,重新开始学习OC,可是,来到这个班级我还是有一种智商被压制的感觉,上课进程一塌糊涂,然后,我就开始蛋疼了,弄得好尴尬,而且重新读档一个月,又开始学习类和对象,啊....有一种要疯了的感觉,感觉和他们不在一个频道,不知道来年的四月份能不能结束.太慢了!之前的班级感觉智商是被他们
iOS
2015-12-24-Xib Xib 使用
由 YIem 撰写于
2015-12-25
浏览:5249 评论:0
//// AppDelegate.h// UI14_Xib//// Created by YIem on 15/12/24.// Copyright © 2015年 www.yiem.net YIem博客. All rights reserved.//import <UIKit/UIKit.h>@interface AppDelegate
iOS
Block传值Block传值Block传值Block传值
由 YIem 撰写于
2015-12-25
浏览:5710 评论:0
//// AppDelegate.h// UI13_Block传值//// Created by YIem on 15/12/23.// Copyright © 2015年 www.yiem.net YIem博客. All rights reserved.//import <UIKit/UIKit.h>@interface AppDele
iOS
2015-12-24-TableView 数组
由 YIem 撰写于
2015-12-25
浏览:5778 评论:0
//// AppDelegate.h// UI13_练习//// Created by YIem on 15/12/23.// Copyright © 2015年 www.yiem.net YIem博客. All rights reserved.//import <UIKit/UIKit.h>@interface AppDelegate
iOS
2015-12-24-TavleView编辑
由 YIem 撰写于
2015-12-25
浏览:5266 评论:0
//// AppDelegate.h// UI12_TavleView编辑//// Created by YIem on 15/12/22.// Copyright © 2015年 www.yiem.net YIem博客. All rights reserved.//import <UIKit/UIKit.h>@interface App
iOS
2015-12-24-UITableVIewController
由 YIem 撰写于
2015-12-25
浏览:4478 评论:0
//// AppDelegate.h// UI12_UITableVIewController//// Created by YIem on 15/12/22.// Copyright © 2015年 www.yiem.net YIem博客. All rights reserved.//import <UIKit/UIKit.h>@int
1
...
45
46
47
48
49
...
52
Yiem
心比天高,命比纸薄。
文章
1300
评论
165
分类
16
随机文章
startBBS 经验大全 ...
晚上没事干申请了几 ...
今天是2016年11月14 ...
for 和while的特点
2018年度考试录用国 ...
先容我升级一下Type ...
Alpharacks Discoun ...
Apple Store 购买开 ...
iPhone X无法识别面 ...
【已经跑路】支持支 ...
Tags
ios(119)
便宜vps(119)
洛杉矶vps(107)
美国vps(105)
vps(98)
ios开发(91)
KVM VPS(89)
过年(77)
洛杉矶便宜VPS(73)
PayPal购买VPS(73)
还有多少天过年(71)
春节(64)
最新文章
《折叠苍穹》十六、十七、...
《折叠苍穹》 二十一、二...
《折叠苍穹》 十一、十二...
《折叠苍穹》六、七、八、...
《折叠苍穹》 一、二、三...
AI 写的小说,《折叠苍...
Xcode Versio...
一段和 AI 的瞎扯的内...
北京之行
请珍重,不相送。
最新评论
YIem
:
是的,需要发票的话还[...]
leeson
:
我也被坑了,前两年是[...]
YIem
:
安装完可以删除
绝对小白菜
:
下载好的Window[...]
啊鱼竿哦哦哦
:
哈哈哈
Links
帮助教程
HelpDocsHub
ipv6测试
个人博客
赵容部落
Typecho主题模版