前面已经写过PCM device的创建框架,我们现在来看看PCM device是如何创建的。 在调用snd_pcm_new时就会创建一个snd_pcm类型的PCM device. struct snd_pcm { struct snd_card *card;//PCM device 说挂载的声卡 s ...
分类:
其他好文 时间:
2016-12-21 20:31:31
阅读次数:
419
iOS后属性带UI_APPEARANCE_SELECTOR 可以统一设置全局作用 例如: 1>开关控件 @property(nullable, nonatomic, strong) UIColor *onTintColor NS_AVAILABLE_IOS(5_0) UI_APPEARANCE_SE ...
分类:
移动开发 时间:
2016-12-13 06:25:41
阅读次数:
273
本人其实是比较喜欢用Block的,因为用block写出来的代码,让我感觉代码要紧凑一些,看起来的时候,思路要清晰些,所以这估计也就是现在block将要代替代理的原因所在吧! 下面,直接进入主题: 一、block block的书写看起来有点怪,其实你只要是懂了其思路,那就非常简单了!我这里就介绍一种初 ...
分类:
其他好文 时间:
2016-12-12 22:21:54
阅读次数:
248
http://blog.csdn.net/iunion/article/details/7204625 仅供自己记录使用, h文件 [cpp] view plain copy print? #import <Foundation/Foundation.h> #import "FMDatabase.h ...
分类:
数据库 时间:
2016-12-12 15:02:23
阅读次数:
236
UITableView cell自定义头文件:shopCell.h#import <UIKit/UIKit.h>@interface shopCell : UITableViewCell@property (strong, nonatomic) UIImageView *image;@propert ...
分类:
移动开发 时间:
2016-12-05 11:48:17
阅读次数:
221
由于Swift 3.0 出了太多令人兴奋的新特性,人们很容易忽略 Objective-C中的小改动。或许你会觉得苹果提及Objective-C 很可能是为了提高和Swift互操作性(译者注:互操作性主要是指OC代码与Swift代码相互转换),不过苹果仍然很欢迎开发者用Objective-C来完成工作 ...
分类:
编程语言 时间:
2016-12-04 20:21:08
阅读次数:
279
DJEmotionTabBar.m 最终效果: ...
分类:
其他好文 时间:
2016-11-28 08:35:24
阅读次数:
139
获取用户授权的用户隐私保护地图定位示例://导入定位框架#import<CoreLocation/CoreLocation.h>@interfaceViewController()<CLLocationManagerDelegate>//设置定位对象@property(nonatomic,stron ...
分类:
移动开发 时间:
2016-11-25 17:10:57
阅读次数:
226
自定义 View .h #import <UIKit/UIKit.h> @interface PooCodeView : UIView @property (nonatomic, retain) NSArray *changeArray; @property (nonatomic, retain) ...
分类:
其他好文 时间:
2016-11-23 14:37:31
阅读次数:
311
UIButton *btn = // create the button objc_setAssociatedObject(btn, "firstObject", someObject, OBJC_ASSOCIATION_RETAIN_NONATOMIC); //实际上就是KVC objc_setA ...
分类:
移动开发 时间:
2016-11-12 13:59:22
阅读次数:
272