YIem`s Blog -心比天高命比纸薄-链接找不到的请在站内搜索内容!
首页
关于
关键字
for
的文章
iOS-get异步网络请求-网络数据请求
由 YIem 撰写于
2016-03-01
浏览:4790 评论:0
iOS-UI-XML数据解析-SAX方法-解析为\n的处理方法
由 YIem 撰写于
2016-03-01
浏览:4041 评论:0
// 解析数据 为\n 第一种 解决方法(判断)if (![string hasPrefix:@"\n"]) { [stu setValue:string forKey:self.elementNameStr]; }//// 解析数据 为\n 第二种 解决方法(设置解析值(\n) 为空) self.eleme[...]
iOS-UI-XML数据解析-DOM方法
由 YIem 撰写于
2016-03-01
浏览:5070 评论:0
iOS-UI-XML数据解析-SAX方法
由 YIem 撰写于
2016-03-01
浏览:5516 评论:0
iOS-UI-JOSN数据解析-第三方方法
由 YIem 撰写于
2016-03-01
浏览:4612 评论:0
iOS-UI-JOSN数据解析-系统方法
由 YIem 撰写于
2016-03-01
浏览:5511 评论:0
iOS-UI-UITabBarControllerDelegate-标签视图控制器
由 YIem 撰写于
2016-01-30
浏览:5488 评论:0
iOS-UI-UITabBarControllerDelegate-标签视图控制器@interface AppDelegate ()<UITabBarControllerDelegate> @end@implementation AppDelegate(void)dealloc{ [_window release]; [super [...]
iOS-UI-UITableView-移动-是否禁止跨区
由 YIem 撰写于
2016-01-25
浏览:6245 评论:0
[上部分 链接======][1]上部分链接-同上方链接TableView里面 1 2 3 一样#warning 移动 3 - 设置是否允许移动(BOOL)tableView:(UITableView )tableView canMoveRowAtIndexPath:(NSIndexPath )indexPath{ return YES;}war[...]
iOS-UI-UITableView 的编辑模式-插入-删除-
由 YIem 撰写于
2016-01-25
浏览:4783 评论:0
import "RootViewController.h"import "Student.h"@interface RootViewController ()<UITableViewDataSource, UITableViewDelegate>@property (nonatomic, retain) NSMutableDiction[...]
iOS-UI-UITableView-indePath 定位分区 行 信息 包含section和row
由 YIem 撰写于
2016-01-23
浏览:4809 评论:0
// 设置 // indePath 定位信息 包含section和row cell.textLabel.text = [NSString stringWithFormat:@"s: %ld, r: %ld", indexPath.section, indexPath.row];
iOS-UI-UITableView-tableView右部索引栏
由 YIem 撰写于
2016-01-23
浏览:4932 评论:0
// tableView右部索引栏(NSArray )sectionIndexTitlesForTableView:(UITableView )tableView{ return @[@"a", @"1", @"啦"];}
iOS-UI_TableView- 行高-头部高度-脚部高度
由 YIem 撰写于
2016-01-23
浏览:4737 评论:0
// 高度控制// 行高(CGFloat)tableView:(UITableView )tableView heightForRowAtIndexPath:(NSIndexPath )indexPath{ return 100;}// 头部高度(CGFloat)tableView:(UITableView *)tableView heightF[...]
iOS-UI_TableView-自定义头部区域-自定义脚部区域
由 YIem 撰写于
2016-01-23
浏览:4447 评论:0
// 自定义头部区域(UIView )tableView:(UITableView )tableView viewForHeaderInSection:(NSInteger)section{ UIView *header = [[UIView alloc]initWithFrame:CGRectMake(100, 100, 100, 100)];[...]
iOS-UI-分区头-分区脚名称设置
由 YIem 撰写于
2016-01-23
浏览:4218 评论:0
// 分区头名称(NSString )tableView:(UITableView )tableView titleForHeaderInSection:(NSInteger)section{ return @"头头头";}// 分区脚部名称(NSString )tableView:(UITableView )tableView titleFor[...]
iOS-UI-导航视图控制器-UINavigationController-背景图片设置
由 YIem 撰写于
2016-01-20
浏览:4577 评论:0
// 背景图片 [navigation.navigationBar setBackgroundImage:[UIImage imageNamed:@"10425.jpg"] forBarMetrics:UIBarMetricsDefault]; ![ // 背景图片[navigation.navigationBar set[...]
iOS-UI-导航视图控制器-UINavigationController-部分属性
由 YIem 撰写于
2016-01-20
浏览:3951 评论:0
// 前景色 navigation.navigationBar.barTintColor = [UIColor cyanColor]; // 背景色// navigation.navigationBar.backgroundColor = [UIColor cyanColor];// 边框色 navigation.navigation[...]
iOS-UI-UIPageControl 页码控制器
由 YIem 撰写于
2016-01-19
浏览:5427 评论:0
/********UIPageControl 页码********/ UIPageControl *pcr = [[UIPageControl alloc] initWithFrame:CGRectMake(100, 500, 200, 50)]; // 注意属性 // 注意, 如果不设置页码个数 控件不显示 pcr.numberOfPages[...]
iOS-UI-UISlide- 滑动条
由 YIem 撰写于
2016-01-19
浏览:6094 评论:0
UISlide 滑动条UISlider *slide = [[UISlider alloc] initWithFrame:CGRectMake(100, 400, 300, 10)];// 重要属性 // 最小值 slide.minimumValue = 0; // 最大值 slide.maximumValue = 10; // 设置进度位置 sl[...]
iOS-UI-UISwith 开关
由 YIem 撰写于
2016-01-19
浏览:4792 评论:0
/****** UISwith 开关******/ // frame只有坐标生效, 大小无效由系统默认指定 UISwitch *swt = [[UISwitch alloc] initWithFrame:CGRectMake(100, 200, 0, 0)]; // 注意触发方式 [swt addTarget:self action:@sele[...]
iOS-UI-创建3个UISlider-分别设置划过区域的颜⾊分别为红,黄,蓝-通过控制三个slider改变self.view的背景颜⾊
由 YIem 撰写于
2016-01-19
浏览:4923 评论:0
iOS-UI-创建3个UISlider-分别设置划过区域的颜⾊分别为红,黄,蓝-通过控制三个slider改变self.view的背景颜⾊ #import "ViewController.h"@interface ViewController ()@property (nonatomic, retain) UISlider *red;@proper[...]
iOS-UI-UIKit框架-UIKit-事件手势
由 YIem 撰写于
2016-01-19
浏览:4920 评论:0
#import "ViewController.h" @interface ViewController ()@property (nonatomic, retain) UILabel *label;@end@implementation ViewController(void)dealloc{ [_label release[...]
iOS-UI - 假夜间模式-VC 屏幕遮住
由 YIem 撰写于
2016-01-19
浏览:5372 评论:0
/******* 假夜间模式 *********/ // 开关 UISwitch *sw = [[UISwitch alloc] initWithFrame:CGRectMake(100, 200, 100, 100)]; [sw addTarget:self action:@selector(swAction:) forControlEvents[...]
iOS-UI-UISegmentedControl-分段控制器
由 YIem 撰写于
2016-01-19
浏览:5396 评论:0
self.seg = [[UISegmentedControl alloc] initWithItems:[NSArray arrayWithObjects:@"界面1", @"界面2", @"界面3", nil]];self.seg.frame = CGRectMake(100, 100, 200, 30); // 起始选中状态 self.seg[...]
iOS-UI-NSUserDefaults-简单信息存储数据到本地
由 YIem 撰写于
2016-01-19
浏览:4969 评论:0
NSUserDefaults 是全局变量 简单信息存储数据到本地// 用来向本地存储一些简单信息 NSUserDefaults *userD = [NSUserDefaults standardUserDefaults]; // 存入BOOL类型数据 [userD setBool:YES forKey:@"isLogin"];[...]
iOS-UI-Button按钮自定义图标-图片样式切换
由 YIem 撰写于
2016-01-19
浏览:4603 评论:0
iOS-UI-Button按钮自定义图标-图片样式切换 UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];button.frame = CGRectMake(100, 300, 200, 50); // 正常状态 [button setBackgroundImage[...]
1
...
6
7
8
9
10
...
12
Yiem
心比天高,命比纸薄。
文章
1303
评论
165
分类
16
标签
1303
页面
1
浏览
1303
随机文章
请慎重考虑是否购买 ...
今天是2017年1月24日 ...
今天是2017年1月26日 ...
QQ十八年了--- 看看 ...
古墓丽影:源起之战
在 App Store Conne ...
Subnet Labs VPS - ...
bluehost最新优惠活 ...
为什么“打篮球”比 ...
近两日有感
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...
最新评论
YIem
:
是的,需要发票的话还[...]
leeson
:
我也被坑了,前两年是[...]
YIem
:
安装完可以删除
绝对小白菜
:
下载好的Window[...]
啊鱼竿哦哦哦
:
哈哈哈
Links
帮助教程
HelpDocsHub
ipv6测试
个人博客
赵容部落
Typecho主题模版