摘要:
用Xcode来写C++程序[4] 函数此节包括引用函数,内联函数,防止修改函数入参,函数自身带有默认值.引用函数:防止复制对象,减少系统开销内联函数:编译的时候根据具体情形将代码嵌入进去,成不成功编译器说了算,减少系统开销提升性能引用函数(防止篡改初始值的入参声明方式):防止修改数据源函数参数带有默... 阅读全文
摘要:
将字符串转换成贝塞尔曲线并执行动画部分开源代码支持:https://github.com/aderussell/string-to-CGPathRef效果:源码://// ShapeWordView.h// PathWord//// Created by XianMingYou on 15/3... 阅读全文
摘要:
用Xcode来写C++程序[3] Constants以下是一些基本数据的含义:75 // int75u // unsigned int75l // long75ul // unsigned long 75lu // unsigned... 阅读全文
摘要:
用Xcode来写C++程序[2] 操作变量此节讲解包括变量的初始化的几种方式,以及泛型编程的两种变量赋值方式.最基本的变量赋值以及操作:// operating with variables#include using namespace std;int main (){ // 声明变量 ... 阅读全文
摘要:
用Xcode来写C++程序[1]新建C++项目工程第一节从新建工程并编译C++源码开始新建工程源码://// main.cpp// YeHelloWorld//// Created by XianMingYou on 15/3/5.// Copyright (c) 2015年 XianMin... 阅读全文
摘要:
创建出条形间隔效果的背景LineBackgroundView效果:使用://// ViewController.m// LineBackgroundView//// Created by XianMingYou on 15/3/4.// Copyright (c) 2015年 XianMin... 阅读全文
摘要:
iOS7中UIView的animateKeyframesWithDuration方法讲解在iOS7中,给UIView添加了一个方法用来直接使用关键帧动画而不用借助CoreAnimation来实现,那就是animateKeyframesWithDuration以下是使用源码://// ViewCon... 阅读全文
摘要:
FBLikeLayoutThis is an UICollectionView layout inspired by the photo section of facebook. This layout loads squared items with randomic full size item... 阅读全文
摘要:
IQAudioRecorderControllerIQAudioRecorderController is a drop-in universal library allows to record audio within the app with a nice User Interface. Th... 阅读全文
摘要:
HSDatePickerViewControllerHSDatePickerViewControlleris an iOS ViewController for date and time picking, based on awesome look&feel of DropboxMailboxap... 阅读全文