由   YIem   撰写于    浏览:3056  评论:0
创建不可变数组,对其的各种操作 // 创建数组 NSArray *arr = @[@"aa", @"bb", @"dd", @"12", @"ff"]; // 获取数组对象个数 NSLog(@"%ld", arr.count); // 获

由   YIem   撰写于    浏览:4097  评论:0
// 1. 创建一个不可变字符串 str // 2. 输出 str 的长度 // 3. 将 str 中的所有 'i' 都替换为 'x' // 4. 比较 str 和 "sample" 字符串的大小, 输出较小的一个. // 5. 将 str 转为可变字符串 mutableStr // 6. 判断 mutableStr 长度, 如果大于10

由   YIem   撰写于    浏览:3977  评论:0
// 获取数组的元素个数( 多用于遍历) NSLog(@"array元素个数: %ld", array.count);/// 获取某一个元素NSString *name = [array objectAtIndex:0]; NSLog(@"array获取某一个元素%@", name); // C 语言形式的取值 NSL

由   YIem   撰写于    浏览:3356  评论:0
/* * 向某个下标插入一个元素(insert) * 删除(delete) * 交换(exchange) */ // 向某个下标插入一个元素 [mutableArr insertObject:@"22" atIndex:2]; NSLog(@"%@", mutableArr); // 删除某个元素 [mutabl

由   YIem   撰写于    浏览:3788  评论:0
iOS 判断Objective-C 字符串是否已i开头 you结尾 NSString *str = [NSString stringWithFormat:@"i Love you"]; [str hasPrefix:@"i"] && [str hasSuffix:@"you"

由   YIem   撰写于    浏览:4363  评论:0
迟来的新年祝福,2016年我要好好的

由   YIem   撰写于    浏览:3261  评论:0
2015-12-28-- 今天我降班了,原因是字典和数组传值迷糊了然后来了新的班级,重新开始学习OC,可是,来到这个班级我还是有一种智商被压制的感觉,上课进程一塌糊涂,然后,我就开始蛋疼了,弄得好尴尬,而且重新读档一个月,又开始学习类和对象,啊....有一种要疯了的感觉,感觉和他们不在一个频道,不知道来年的四月份能不能结束.太慢了!之前的班级感觉智商是被他们

由   YIem   撰写于    浏览:4479  评论: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

由   YIem   撰写于    浏览:4739  评论: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

由   YIem   撰写于    浏览:4997  评论: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

由   YIem   撰写于    浏览:4424  评论: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

由   YIem   撰写于    浏览:3775  评论: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

由   YIem   撰写于    浏览:4653  评论: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

由   YIem   撰写于    浏览:3907  评论: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

由   YIem   撰写于    浏览:3881  评论: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

由   YIem   撰写于    浏览:4598  评论: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

由   YIem   撰写于    浏览:4327  评论:0
iOS导航栏 添加图片iOS导航栏 添加背景图片UI导航栏 添加图片UI导航栏 添加背景图片[self.navigationController.navigationBar setBackgroundImage:[UIImage imageNamed:@"bg_nav"] forBarMetrics:0];

由   YIem   撰写于    浏览:4407  评论:0
0000001000020000300004

由   YIem   撰写于    浏览:3906  评论: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

由   YIem   撰写于    浏览:3591  评论:0
//// RootViewController.m// UI10_练习//// Created by YIem on 15/12/18.// Copyright © 2015年 www.yiem.net YIem博客. All rights reserved.//import "RootViewController.h"import "MyTable

由   YIem   撰写于    浏览:3964  评论:0
//// RootViewController.m// UI10_UITableView2//// Created by Marry W. on 12/18/15.// Copyright (c) 2015 www.lanou3g.com 蓝鸥科技. All rights reserved.//import "RootViewController.h

由   YIem   撰写于    浏览:4151  评论:0
//// RootViewController.h// UI9_UITableView练习//// Created by YIem on 15/12/17.// Copyright (c) 2015年 www.yiem.net YIem博客. All rights reserved.//import <UIKit/UIKit.h>@int

由   YIem   撰写于    浏览:4144  评论:0
//// RootViewController.m// UI9_UITableView协议方法//// Created by YIem on 15/12/17.// Copyright (c) 2015年 www.yiem.net YIem博客. All rights reserved.//import "RootViewController.h"@

由   YIem   撰写于    浏览:4103  评论:0
//// RootViewController.m// UI9_UITableView//// Created by YIem on 15/12/17.// Copyright (c) 2015年 www.yiem.net YIem博客. All rights reserved.//import "RootViewController.h"@inte

由   YIem   撰写于    浏览:4566  评论:0
ShadowSocks相关软件下载我们把Shadowsocks相关的6个软件打包,打包后文件大小是4M下载地址是:http://pan.baidu.com/s/1kT67wAr这里包括:Shadowsocks客户端(Windows 8/8.1)Shadowsocks客户端(Windows 7及以下 )Shadowsocks客户端(Mac OS X)Shado