YIem`s Blog -心比天高命比纸薄-链接找不到的请在站内搜索内容!
首页
关于
iOS
OC-字典--添加 修改 删除 查询等等
由 YIem 撰写于
2016-01-06
浏览:4523 评论: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
浏览:4259 评论:0
OC-可变字典(NSMutableDictionary)操作// 可变字典创建 NSMutableDictionary *mdic = [NSMutableDictionary dictionaryWithObjectsAndKeys:@"卞一", @"name", @"男", @"sex
iOS
OC-不可变字典(NSDictionary) 操作
由 YIem 撰写于
2016-01-06
浏览:4285 评论:0
OC-不可变字典(NSDictionary) 操作// 不可变字典 创建 NSDictionary *dic = [NSDictionary dictionaryWithObjectsAndKeys:@"卞一", @"name", @"男", @"sex", @"啪啪啪
iOS
创建可变数和不可变数组的中文创建方法
由 YIem 撰写于
2016-01-05
浏览:3726 评论:0
创建可变数和不可变数组的中文方法// 中文版 NSArray *阿尔 = @[@"AAA"]; NSLog(@"%@", 阿尔); NSLog(@"%ld", 阿尔.count); NSArray *卞一 = @[@"YIem", @"YI", @"
iOS
可变数组和不可变数组的快速创建-修改-赋值-替换-判断等等
由 YIem 撰写于
2016-01-05
浏览:4346 评论:0
可变数组和不可变数组的快速创建-修改-赋值-替换-判断等等NSArray *arr = @[@"aa", @"bb", @"cc", @"dd", @"ff", @"ee", @"gg"]; // 获取数组的元素个数
iOS
可变数组的各种操作,添加-修改-删除-替换
由 YIem 撰写于
2016-01-05
浏览:4337 评论:0
可变数组的各种操作// 可变数组 NSMutableArray *mArr = [NSMutableArray arrayWithObjects:@"aaa", @"bbb", @"ccc", @"ddd", @"eee", nil]; // 添加一个元素 [
iOS
创建不可变数组,对其的各种操作,取值赋值
由 YIem 撰写于
2016-01-05
浏览:3632 评论:0
创建不可变数组,对其的各种操作 // 创建数组 NSArray *arr = @[@"aa", @"bb", @"dd", @"12", @"ff"]; // 获取数组对象个数 NSLog(@"%ld", arr.count); // 获
iOS
OC 数组 创建字符串- 长度- 替换- 比较- 转换-判断
由 YIem 撰写于
2016-01-05
浏览:4669 评论:0
// 1. 创建一个不可变字符串 str // 2. 输出 str 的长度 // 3. 将 str 中的所有 'i' 都替换为 'x' // 4. 比较 str 和 "sample" 字符串的大小, 输出较小的一个. // 5. 将 str 转为可变字符串 mutableStr // 6. 判断 mutableStr 长度, 如果大于10
iOS
OC 不可变数组的 方法集合
由 YIem 撰写于
2016-01-05
浏览:4549 评论: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
浏览:3968 评论:0
/* * 向某个下标插入一个元素(insert) * 删除(delete) * 交换(exchange) */ // 向某个下标插入一个元素 [mutableArr insertObject:@"22" atIndex:2]; NSLog(@"%@", mutableArr); // 删除某个元素 [mutabl
iOS
iOS 判断Objective-C 字符串是否已i开头 you结尾
由 YIem 撰写于
2016-01-04
浏览:4242 评论:0
iOS 判断Objective-C 字符串是否已i开头 you结尾 NSString *str = [NSString stringWithFormat:@"i Love you"]; [str hasPrefix:@"i"] && [str hasSuffix:@"you"
默认分类
迟来的新年祝福,2016年我要好好的
由 YIem 撰写于
2016-01-04
浏览:4872 评论:0
迟来的新年祝福,2016年我要好好的
随便说
2015-12-28-- 今天我降班了,原因是字典和数组传值迷糊了
由 YIem 撰写于
2015-12-28
浏览:3911 评论:0
2015-12-28-- 今天我降班了,原因是字典和数组传值迷糊了然后来了新的班级,重新开始学习OC,可是,来到这个班级我还是有一种智商被压制的感觉,上课进程一塌糊涂,然后,我就开始蛋疼了,弄得好尴尬,而且重新读档一个月,又开始学习类和对象,啊....有一种要疯了的感觉,感觉和他们不在一个频道,不知道来年的四月份能不能结束.太慢了!之前的班级感觉智商是被他们
iOS
2015-12-24-Xib Xib 使用
由 YIem 撰写于
2015-12-25
浏览:5090 评论: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
浏览:5497 评论: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
浏览:5603 评论: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
浏览:5072 评论: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
浏览:4309 评论: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
iOS
2015-12-24-RegisterCell注册cell重用池
由 YIem 撰写于
2015-12-25
浏览:5296 评论:0
//// AppDelegate.h// UI12_RegisterCell//// Created by YIem on 15/12/22.// Copyright © 2015年 www.yiem.net YIem博客. All rights reserved.//import <UIKit/UIKit.h>@interface Ap
iOS
2015-12-24-UI12_限时练习
由 YIem 撰写于
2015-12-25
浏览:4570 评论:0
//// AppDelegate.h// UI12_限时练习//// Created by Marry W. on 15/12/22.// Copyright © 2015年 www.lanou3g.com 蓝鸥科技. All rights reserved.//import <UIKit/UIKit.h>@interface AppDe
iOS
UITablView综合练习
由 YIem 撰写于
2015-12-25
浏览:4529 评论:0
//// AppDelegate.h// UI11_UITablView综合练习//// Created by YIem on 15/12/21.// Copyright © 2015年 www.yiem.net YIem博客. All rights reserved.//import <UIKit/UIKit.h>@interface
iOS
2015-12-24-// 目标: 数组+字典 -> 数组 + model对象
由 YIem 撰写于
2015-12-25
浏览:5289 评论:0
//// AppDelegate.h// UI11_练习2//// Created by YIem on 15/12/21.// Copyright © 2015年 www.yiem.net YIem博客. All rights reserved.//import <UIKit/UIKit.h>@interface AppDelegate
iOS
iOS导航栏 添加图片 添加背景图片-iOS-UI
由 YIem 撰写于
2015-12-21
浏览:5053 评论:0
iOS导航栏 添加图片iOS导航栏 添加背景图片UI导航栏 添加图片UI导航栏 添加背景图片[self.navigationController.navigationBar setBackgroundImage:[UIImage imageNamed:@"bg_nav"] forBarMetrics:0];
动漫美图欣赏
来一组图片,lalalalalalalalalalala
由 YIem 撰写于
2015-12-19
浏览:4935 评论:0
0000001000020000300004
iOS
TableViewCell自定义Cell
由 YIem 撰写于
2015-12-19
浏览:4680 评论:0
//// RootViewController.m// UI10_自定义Cell//// Created by Marry W. on 12/18/15.// Copyright (c) 2015 蓝鸥. All rights reserved.//import "RootViewController.h"warning 1.导入cell头文件im
1
...
45
46
47
48
49
...
52
Yiem
心比天高,命比纸薄。
文章
1293
评论
165
分类
16
随机文章
如果马云也做整容鉴 ...
2015-11-17-5. 用函 ...
感觉 Google Pixel ...
WDCP-网站的迁移-打 ...
鼠标右键点击查看网 ...
如何给Google浏览器 ...
时间快到让人遗忘, ...
Xcode 10.1 Release ...
苹果开发者最新新闻 ...
原价20美元的年付VP ...
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 的瞎扯的内...
北京之行
请珍重,不相送。
百度:从价值观迷失到社会...
便宜年付10美元VPS推...
对升旗事件做评论
点赞表扬 GoDadd...
Hi,2025!
搬瓦工Bandwagon...
点名表扬下水星的垃圾产品...
最新评论
YIem
:
是的,需要发票的话还[...]
leeson
:
我也被坑了,前两年是[...]
YIem
:
安装完可以删除
绝对小白菜
:
下载好的Window[...]
啊鱼竿哦哦哦
:
哈哈哈
Links
帮助教程
HelpDocsHub
ipv6测试
个人博客
赵容部落
Typecho主题模版