OC
飞天猪Pony
.Net iOS IoT
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
OC实现简单的图文混排
- (void)showCity:(NSString *)cityname { //实现富文本 NSMutableAttributedString *string = [[NSMutableAttributedString alloc] initWithString:cityname attributes:nil]; //进行图文混排 NSTextAt原创 2016-07-26 14:25:38 · 1066 阅读 · 0 评论 -
CoreData简单教程
coreData初步认识 根据这片文档可以自己初步建立一个coreData,进行简单的数据的增、删、改、查。 1、新建工程,记得勾选Use Core Data 如果新建工程的时候忘记勾选Use Core Data,也可以自行添加,快捷键command+N,选择iOS ->Core Data -> Data Model 2、建立好以后可以原创 2016-08-15 17:14:04 · 385 阅读 · 0 评论 -
OC清除缓存代码实例
#import "ViewController.h" @interface ViewController () @end @implementation ViewController - (void)viewDidLoad { [super viewDidLoad]; UIButton *btn = [UIButton buttonWithType:UIButto转载 2016-07-28 16:22:05 · 917 阅读 · 0 评论 -
NSNotificationCenter带参数的通知
下面以字符串为例,数组字典传递方式都是一样。 NSString *string = @"要传的参数字符串"; 传递参数: [[NSNotificationCenter defaultCenter] postNotificationName:@"NOITIFYNAME" object:string]; 参数说明: postNotificationName:通知的名字,也是通知的原创 2016-08-18 15:10:44 · 948 阅读 · 0 评论 -
UITableView相应Touch事件
GitHub:https://github.com/zyfmeng/UITableViewTouch实现效果图: 主要代码实现 ViewController.m文件代码实现,其中TTableView是继承于UITableView。#import "ViewController.h" #import "TTableView.h" #import "TTableCell.h"@interface V原创 2016-09-02 17:52:46 · 752 阅读 · 0 评论 -
滚动图片缩放
主要代码如下:GitHub地址 // // ViewController.m // PhotoZoom // // Created by md on 16/8/11. // Copyright © 2016年 HKQ. All rights reserved. // #import "ViewController.h" #import "ImageEnlargeCell.h" #imp原创 2016-08-11 11:05:21 · 450 阅读 · 0 评论
分享