YIem`s Blog -心比天高命比纸薄-链接找不到的请在站内搜索内容!
首页
关于
关键字
RAM
的文章
iOS-多媒体-视频播放 - 边下边播-
由 YIem 撰写于
2016-03-15
浏览:5735 评论:0
iOS-不规则瀑布流-瀑布流图片-
由 YIem 撰写于
2016-03-11
浏览:6247 评论:0
iOS-不规则瀑布流-瀑布流图片-
iOS-集合视图-UIcollectionView
由 YIem 撰写于
2016-03-10
浏览:6096 评论:0
iOS-集合视图-UIcollectionView
iOS-判断当前网络状态-数据-无网络-WIFI-等等-第三方@
由 YIem 撰写于
2016-03-10
浏览:6866 评论:0
iOS-判断当前网络状态-数据-无网络-WIFI-等等-第三方@第三方---UIKit+AFNetworking
iOS-数据库-FMDB-第三方-插入数据列表-(附件1-ViewController.m)
由 YIem 撰写于
2016-03-10
浏览:6041 评论:0
iOS-数据库-FMDB-第三方-插入数据列表-
iOS-数据库-ViewController.m 调用- 数据库附件(1)
由 YIem 撰写于
2016-03-03
浏览:5824 评论:0
iOS-数据库-ViewController.m 调用- 数据库附件(1)
iOS-网络数据请求-视频异步下载播放
由 YIem 撰写于
2016-03-02
浏览:5939 评论:0
iOS-网络数据请求-异步图片下载
由 YIem 撰写于
2016-03-02
浏览:4633 评论:0
iOS-Post异步-网络请求-网络数据请求
由 YIem 撰写于
2016-03-01
浏览:5466 评论:0
iOS-get异步网络请求-网络数据请求
由 YIem 撰写于
2016-03-01
浏览:4697 评论:0
iOS-UI-XML数据解析-DOM方法
由 YIem 撰写于
2016-03-01
浏览:4953 评论:0
iOS-UI-XML数据解析-SAX方法
由 YIem 撰写于
2016-03-01
浏览:5407 评论:0
iOS-UI-JOSN数据解析-第三方方法
由 YIem 撰写于
2016-03-01
浏览:4489 评论:0
iOS-UI-JOSN数据解析-系统方法
由 YIem 撰写于
2016-03-01
浏览:5387 评论:0
iOS-UI-UITabBarControllerDelegate-标签视图控制器
由 YIem 撰写于
2016-01-30
浏览:5370 评论:0
iOS-UI-UITabBarControllerDelegate-标签视图控制器@interface AppDelegate ()<UITabBarControllerDelegate> @end@implementation AppDelegate(void)dealloc{ [_window release]; [super [...]
iOS-UI-UITableView 的编辑模式-插入-删除-
由 YIem 撰写于
2016-01-25
浏览:4648 评论:0
import "RootViewController.h"import "Student.h"@interface RootViewController ()<UITableViewDataSource, UITableViewDelegate>@property (nonatomic, retain) NSMutableDiction[...]
iOS-UI-tableView的头部脚部区域
由 YIem 撰写于
2016-01-23
浏览:4288 评论:0
// tableView的头部脚部区域 // 头 (只有高度起作用) UIView *header = [[UIView alloc]initWithFrame:CGRectMake(100, 100, 100, 100)]; header.backgroundColor = [UIColor redColor]; tableView.tableH[...]
iOS-UI_TableView-自定义头部区域-自定义脚部区域
由 YIem 撰写于
2016-01-23
浏览:4367 评论:0
// 自定义头部区域(UIView )tableView:(UITableView )tableView viewForHeaderInSection:(NSInteger)section{ UIView *header = [[UIView alloc]initWithFrame:CGRectMake(100, 100, 100, 100)];[...]
iOS-UI-UIPageControl 页码控制器
由 YIem 撰写于
2016-01-19
浏览:5336 评论:0
/********UIPageControl 页码********/ UIPageControl *pcr = [[UIPageControl alloc] initWithFrame:CGRectMake(100, 500, 200, 50)]; // 注意属性 // 注意, 如果不设置页码个数 控件不显示 pcr.numberOfPages[...]
iOS-UI-UISlide- 滑动条
由 YIem 撰写于
2016-01-19
浏览:5962 评论: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
浏览:4670 评论: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
浏览:4811 评论: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
浏览:4820 评论: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
浏览:5265 评论:0
/******* 假夜间模式 *********/ // 开关 UISwitch *sw = [[UISwitch alloc] initWithFrame:CGRectMake(100, 200, 100, 100)]; [sw addTarget:self action:@selector(swAction:) forControlEvents[...]
iOS-UI- SetViewController-抽屉效果
由 YIem 撰写于
2016-01-19
浏览:6087 评论:0
SetViewController *setVC = [[SetViewController alloc]init];// 注意坐标设置 setVC.view.frame = CGRectMake(-150, 0, 150, self.view.frame.size.height); [self addChildViewControll[...]
1
...
7
8
9
10
11
Yiem
心比天高,命比纸薄。
文章
1300
评论
165
分类
16
标签
1300
页面
1
浏览
1300
随机文章
2017年就这么要过去 ...
iOS-设置按钮的边框 ...
垃圾金山系列之网络 ...
今天是2017年1月11日 ...
米柚手游模拟器,挂 ...
HostMyBytes 便宜VP ...
#年付8美元VPS-代理 ...
Apple 应用程序上架 ...
Apple 现已推出新的 ...
Apple更新:Create ...
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主题模版