YIem`s Blog -心比天高命比纸薄-链接找不到的请在站内搜索内容!
首页
关于
关键字
oc
的文章
iOS-数据库-数据库创建
由 YIem 撰写于
2016-03-03
浏览:3197 评论:0
iOS-数据库-ViewController.m 调用- 数据库附件(1)iOS-数据库-Student类-附件(2)iOS-数据库-数据库创建DataBaseHandle.h//// DataBaseHandle.h// UI17_数据库//// Created by YIem on 16/3/3.// Copyright © 2016年[...]
iOS-数据库-Student类-附件(2)
由 YIem 撰写于
2016-03-03
浏览:3257 评论:0
iOS-数据库-ViewController.m 调用- 数据库附件(1)iOS-数据库-Student类-附件(2)
iOS-数据库-ViewController.m 调用- 数据库附件(1)
由 YIem 撰写于
2016-03-03
浏览:3652 评论:0
iOS-数据库-ViewController.m 调用- 数据库附件(1)
iOS-文件夹操作-文件管理器(创建/删除/改名)-NSFileManager
由 YIem 撰写于
2016-03-02
浏览:4373 评论:0
iOS-初级数据持久化_复杂对象的存储-自定义Student类
由 YIem 撰写于
2016-03-02
浏览:3775 评论:0
iOS-初级数据持久化_简单对象的读写(NSString/NSArray/NSDictionary/NSData)写入本地磁盘
由 YIem 撰写于
2016-03-02
浏览:4662 评论:0
iOS-网络数据请求-视频异步下载播放
由 YIem 撰写于
2016-03-01
浏览:3875 评论:0
iOS-网络数据请求-异步图片下载
由 YIem 撰写于
2016-03-01
浏览:2895 评论:0
iOS-Post异步-网络请求-网络数据请求
由 YIem 撰写于
2016-03-01
浏览:3691 评论:0
iOS-get异步网络请求-网络数据请求
由 YIem 撰写于
2016-03-01
浏览:2884 评论:0
iOS-UI-XML数据解析-DOM方法
由 YIem 撰写于
2016-02-29
浏览:2943 评论:0
iOS-UI-XML数据解析-SAX方法
由 YIem 撰写于
2016-02-29
浏览:3438 评论:0
iOS-UI-JOSN数据解析-第三方方法
由 YIem 撰写于
2016-02-29
浏览:2549 评论:0
iOS-UI-JOSN数据解析-系统方法
由 YIem 撰写于
2016-02-29
浏览:3354 评论:0
2016-01-30- 今天晚上要放年假了..
由 YIem 撰写于
2016-01-30
浏览:2623 评论:0
激动?开心? NO NO NO写代码吧,骚年!C语言试题.pages.pdfOC.pages.pdf
iOS-UI-UITabBarControllerDelegate-标签视图控制器
由 YIem 撰写于
2016-01-29
浏览:3122 评论:0
iOS-UI-UITabBarControllerDelegate-标签视图控制器@interface AppDelegate ()<UITabBarControllerDelegate> @end@implementation AppDelegate(void)dealloc{[_window release]; [super dea[...]
iOS-UI-UITableView 的编辑模式-插入-删除-
由 YIem 撰写于
2016-01-25
浏览:2562 评论:0
import "RootViewController.h"import "Student.h"@interface RootViewController ()<UITableViewDataSource, UITableViewDelegate>@property (nonatomic, retain) NSMutableDiction[...]
iOS-UI-tableView的头部脚部区域
由 YIem 撰写于
2016-01-22
浏览:2570 评论:0
// tableView的头部脚部区域 // 头 (只有高度起作用) UIView *header = [[UIView alloc]initWithFrame:CGRectMake(100, 100, 100, 100)]; header.backgroundColor = [UIColor redColor]; tableView.tableH[...]
iOS-UI_TableView-自定义头部区域-自定义脚部区域
由 YIem 撰写于
2016-01-22
浏览:2588 评论:0
// 自定义头部区域(UIView )tableView:(UITableView )tableView viewForHeaderInSection:(NSInteger)section{UIView *header = [[UIView alloc]initWithFrame:CGRectMake(100, 100, 100, 100)];he[...]
iOS-UI-UIPageControl 页码控制器
由 YIem 撰写于
2016-01-18
浏览:3579 评论:0
/********UIPageControl 页码********/ UIPageControl *pcr = [[UIPageControl alloc] initWithFrame:CGRectMake(100, 500, 200, 50)]; // 注意属性 // 注意, 如果不设置页码个数 控件不显示 pcr.numberOfPages[...]
iOS-UI-UISlide- 滑动条
由 YIem 撰写于
2016-01-18
浏览:4134 评论: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-18
浏览:2853 评论: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-18
浏览:2840 评论:0
iOS-UI-创建3个UISlider-分别设置划过区域的颜⾊分别为红,黄,蓝-通过控制三个slider改变self.view的背景颜⾊#import "ViewController.h"@interface ViewController ()@property (nonatomic, retain) UISlider *red;@property[...]
iOS-UI-UIKit框架-UIKit-事件手势
由 YIem 撰写于
2016-01-18
浏览:2718 评论:0
#import "ViewController.h" @interface ViewController ()@property (nonatomic, retain) UILabel *label;@end@implementation ViewController(void)dealloc{[_label release];[...]
iOS-UI - 假夜间模式-VC 屏幕遮住
由 YIem 撰写于
2016-01-18
浏览:3143 评论:0
/******* 假夜间模式 *********/ // 开关 UISwitch *sw = [[UISwitch alloc] initWithFrame:CGRectMake(100, 200, 100, 100)]; [sw addTarget:self action:@selector(swAction:) forControlEvents[...]
1
...
7
8
9
10
11
...
13
Yiem
心比天高,命比纸薄。
文章
1267
评论
163
分类
16
标签
1267
页面
1
浏览
1267
随机文章
2015-11-10-在蓝鸥的 ...
今天是2016年10月30 ...
今天是2016年11月25 ...
关于2017 !
今天是2017年1月6日 ...
For 循环,技巧
火车司机日记-电影推 ...
tragicservers VPS- ...
【已经跑路】#年付3 ...
【跑路】支持支付宝 ...
Tags
ios(119)
便宜vps(115)
洛杉矶vps(105)
美国vps(103)
vps(94)
ios开发(91)
KVM VPS(88)
过年(77)
PayPal购买VPS(73)
洛杉矶便宜VPS(72)
还有多少天过年(71)
春节(64)
最新文章
今天发现 AFNetwo...
一年一度的WWDC23将...
1TB储存形VPS年付3...
周总理诞辰125周年
DesiVPS 最新优惠...
关于Bitcode的弃用
记录:张狗逼日常事
记录下这个吃人事件:“郑...
Ask Apple - ...
360搜索这几天又犯病了
最新评论
YIem
:
安装完可以删除
绝对小白菜
:
下载好的Window[...]
啊鱼竿哦哦哦
:
哈哈哈
YIem
:
这辆车 怎么样呢? [...]
frrrrr
:
hao
Links
帮助教程
ipv6测试
个人博客
赵容部落
Typecho主题模版