关键字 me 的文章


由   YIem   撰写于    浏览:6565  评论:0
OC- 字典套数组 -- 省市区// 获取文件 NSString *str = [NSString stringWithContentsOfFile:@"area.txt" encoding:NSUTF8StringEncoding error:nil]; // 按\n截取 NSArray *line = [str compon[...]

由   YIem   撰写于    浏览:3576  评论:0
省市区OC-字典-省市区-省数组套省字典套市数组套市字典套区数组数据文件:省市区TXT(数据)文件 NSString *str = [NSString stringWithContentsOfFile:@"area.txt" encoding:NSUTF8StringEncoding error:nil]; NSLog(@&qu[...]

由   YIem   撰写于    浏览:3095  评论:0
分别有三个文件.mian.mint main(int argc, const char * argv[]) { // 创建学生 Student *stu1 = [[Student alloc]initWithName:@"卞一" sex:@"男" age:@"20"]; Student [...]

由   YIem   撰写于    浏览:2798  评论:0
OC-可变字典(NSMutableDictionary)操作// 可变字典创建 NSMutableDictionary *mdic = [NSMutableDictionary dictionaryWithObjectsAndKeys:@"卞一", @"name", @"男", @&quo[...]

由   YIem   撰写于    浏览:2834  评论:0
OC-不可变字典(NSDictionary) 操作// 不可变字典 创建 NSDictionary *dic = [NSDictionary dictionaryWithObjectsAndKeys:@"卞一", @"name", @"男", @"sex", @&quo[...]

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

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

由   YIem   撰写于    浏览:3847  评论: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 AppDel[...]

由   YIem   撰写于    浏览:4079  评论: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 Ap[...]

由   YIem   撰写于    浏览:4434  评论: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 AppDele[...]

由   YIem   撰写于    浏览:3800  评论: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>@interfac[...]

由   YIem   撰写于    浏览:3183  评论: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>[...]

由   YIem   撰写于    浏览:3956  评论: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>@interfa[...]

由   YIem   撰写于    浏览:3234  评论: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 [...]

由   YIem   撰写于    浏览:3264  评论: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>@inter[...]

由   YIem   撰写于    浏览:3903  评论: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 AppDel[...]

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

由   YIem   撰写于    浏览:3258  评论: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[...]

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

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

由   YIem   撰写于    浏览:3561  评论: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>[...]

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

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

由   YIem   撰写于    浏览:4662  评论:0
ShadowSocks 图文教程SS的全称是Shadowsocks,是一种轻量级的加密的socks5网络代理,经本人测试速度比VPN快很多,观看YouTube视频非常流畅,是迄今为止最快的科学工具。下面分别介绍在Windows, Mac OS X, iOS, Android等系统下怎样使用Shadowsocks科学上网。获取帐号正常你需要获取ss帐[...]