摘要: 隐私协议 本软件尊重并保护所有使用服务用户的个人隐私权。为了给您提供更准确、更有个性化的服务,本软件会按照本隐私权政策的规定使用和披露您的个人信息。但本软件将以高度的勤勉、审慎义务对待这些信息。除本隐私权政策另有规定外,在未征得您事先许可的情况下,本软件不会将这些信息对外披露或向第三方提供。本软件会 阅读全文
posted @ 2021-01-12 22:57 云影风雨 阅读(457) 评论(0) 推荐(0) 编辑
摘要: 1.RCTBridgeModule RN调用 var IOSHandler = require('react-native').NativeModules.IOSHandler; IOSHandler.goPage('').then((jsonObject) => { } }); 阅读全文
posted @ 2019-03-07 16:19 云影风雨 阅读(947) 评论(0) 推荐(0) 编辑
摘要: 1.添加橙色圆环 2.添加进度条 3.添加渐变颜色 4.执行动画 阅读全文
posted @ 2016-06-01 11:13 云影风雨 阅读(721) 评论(0) 推荐(0) 编辑
摘要: 目录 1.宏定义和const,ENUM 2016 年05月30日 1.宏定义和const,ENUM 1.1 宏定义#define 在编译开始前就会被替换,而const不会 1.2 宏定义可以定义一些函数,const 不能 1.3 宏定义只做替换,不做检查,也不报错,而且可能存在重复定义的问题。而co 阅读全文
posted @ 2016-05-30 16:31 云影风雨 阅读(151) 评论(0) 推荐(0) 编辑
摘要: //js代码,声明1个数组,对img 进行遍历,采用,分割多个url 阅读全文
posted @ 2016-04-15 09:05 云影风雨 阅读(1057) 评论(0) 推荐(0) 编辑
摘要: - (NSString * ) chineseToPinyin:(NSString *) chinese{ CFStringRef hanzi = (__bridge CFStringRef)(chinese); CFMutableStringRef string = CFStringCreateMutableCopy(NULL, 0, hanzi); // Bool... 阅读全文
posted @ 2016-04-13 17:36 云影风雨 阅读(644) 评论(0) 推荐(0) 编辑
摘要: 第三方控件[GRMustanche] OC Swift //测试版本 7.3.2 最终效果图: 【使用方法&& 核心代码】 通过cocoapods 导入 #import <GRMustache.h> - (NSString *) testFormatWithName: (NSString *) na 阅读全文
posted @ 2016-04-06 14:25 云影风雨 阅读(468) 评论(0) 推荐(0) 编辑
摘要: 冒泡排序: NSMutableArray *p = [[NSMutableArray alloc] initWithObjects:@"3",@"5",@"4",@"1",nil]; for (int i = 0; i<[p count]; i++) { for (int j=i+1; j<[p c 阅读全文
posted @ 2016-03-11 10:36 云影风雨 阅读(195) 评论(0) 推荐(0) 编辑
摘要: 1.线程和进程 2.单例 阅读全文
posted @ 2016-03-07 10:08 云影风雨 阅读(115) 评论(0) 推荐(0) 编辑
摘要: #import "MyView.h" IB_DESIGNABLE @interface MyView () @property (nonatomic, strong) IBInspectable UIColor * borderColor; @property (nonatomic, assign) 阅读全文
posted @ 2016-02-25 10:03 云影风雨 阅读(440) 评论(0) 推荐(0) 编辑