12 2016 档案
iOS 消息处理之performSelector
摘要://// RootViewController.h// DSCategories//// Created by dasheng on 15/12/17.// Copyright © 2015年 dasheng. All rights reserved.//#import <UIKit/UIKit.h 阅读全文
posted @ 2016-12-22 10:19 雨季的雾 阅读(3137) 评论(0) 推荐(0) 编辑
iOS UIApplication sharedapplication用法
摘要:应用中打开其他应用 我们来讨论一下,在iOS开发中,如何实现从app1打开app2。 基本的思路就是,可以为app2定义一个URL,在app1中通过打开这个URL来打开app2,在此过程中,可以传送一些参数。下面来讨论一下具体的实现过程。 1. 在app2的info.plist中定义URL,就是在文 阅读全文
posted @ 2016-12-19 17:20 雨季的雾 阅读(4975) 评论(0) 推荐(0) 编辑
iOS 隐藏状态栏
摘要:1.整个项目隐藏状态栏 在Targets->General->勾选中Hide status bar . 整个项目隐藏状态栏 整个项目隐藏状态栏 2.单个界面隐藏状态栏,例如登录注册页面 1.首先在info.plist里面View controller-based status bar appeara 阅读全文
posted @ 2016-12-19 16:48 雨季的雾 阅读(7858) 评论(0) 推荐(0) 编辑
iOS 语音朗读
摘要://判断版本大于7.0 if ([[[UIDevice currentDevice] systemVersion] integerValue] >= 7.0) { NSString * tempStr = @"朗读内容! "; AVSpeechUtterance * utterance = [AVS 阅读全文
posted @ 2016-12-16 15:40 雨季的雾 阅读(212) 评论(0) 推荐(0) 编辑
iOS 自定义方法 - UIView扩展
摘要:示例代码 //#import <UIKit/UIKit.h>@interface UIView (LPCView)/** 上 */@property CGFloat top;/** 下 */@property CGFloat bottom;/** 左 */@property CGFloat left 阅读全文
posted @ 2016-12-16 15:23 雨季的雾 阅读(1574) 评论(0) 推荐(0) 编辑
iOS 自定义方法 - 播放GIF
摘要:示例代码 ///////////////////////第一种/////////////////////// //// GifView.h// GIFViewer//// Created by xToucher04 on 11-11-9.// Copyright 2011 Toucher. All 阅读全文
posted @ 2016-12-16 15:16 雨季的雾 阅读(384) 评论(0) 推荐(0) 编辑
iOS 自定义方法 - 不完整边框
摘要:示例代码 ///////////////////////////OC.h////////////////////////// //// UIView+FreeBorder.h// BHBFreeBorder//// Created by bihongbo on 15/12/30.// Copyrig 阅读全文
posted @ 2016-12-15 17:43 雨季的雾 阅读(582) 评论(0) 推荐(0) 编辑
源码共读 二 微信网页端机器人快速入门
该文被密码保护。
posted @ 2016-12-12 15:09 雨季的雾 阅读(1) 评论(0) 推荐(0) 编辑
源码共读 一 快速排序算法
该文被密码保护。
posted @ 2016-12-12 15:07 雨季的雾 阅读(0) 评论(0) 推荐(0) 编辑
iOS 如何使用Safari浏览器打开app
摘要:1.首先在info.plist添加一个键值对,如下图 或 2.在appdelegate.m文件如下方法写代码 3.在Safari浏览器输入myApp:// ,就可以启动应用了,在Safari浏览器测试通过 阅读全文
posted @ 2016-12-06 14:24 雨季的雾 阅读(7514) 评论(0) 推荐(0) 编辑
iOS cocoapods升级及问题
摘要:安装 安装则会提示当前Ruby版本。gem介绍:gem是一个管理Ruby库和程序的标准包,它通过Ruby Gem(如 http://rubygems.org/ )源来查找、安装、升级和卸载软件包,非常的便捷。 第二步:指定淘宝的源gem sources -a https://ruby.taobao. 阅读全文
posted @ 2016-12-02 12:01 雨季的雾 阅读(10844) 评论(0) 推荐(0) 编辑
iOS MJRefresh设置MJRefreshStateNoMoreData状态图片
摘要:MJRefresh地址 // 代码地址: https://github.com/CoderMJLee/MJRefresh// 代码地址: http://code4app.com/ios/%E5%BF%AB%E9%80%9F%E9%9B%86%E6%88%90%E4%B8%8B%E6%8B%89%E4 阅读全文
posted @ 2016-12-02 10:39 雨季的雾 阅读(1994) 评论(0) 推荐(0) 编辑