xaoxuu

Results 36 issues of xaoxuu

### NSUserDefaults 增加了`ax_cacheObject`,与`ax_cacheValue`功能不同。区别参考系统的`setObject`和`setValue`。 增加了`ax_removeObjectForKey`方法。 ### NSString 增加了`NSStringFromASCIIValue(unsigned char ASCIIValue)`函数,快速将ASCII码值转换成OC字符串。 增加了一个快速输出百分比的函数,将浮点型CGFloat数据转换成0%~100%的格式化字符串 ```objective-c NSStringFromPercent(CGFloat x); // 当传入x为小于或等于0的数时,NSStringFromPercent(x)为@"0%"。 // 当传入x为大于0并且小于1的数如0.3时,NSStringFromPercent(0.3)为@"30%"。 // 当传入x为大于或等于1的数时,NSStringFromPercent(x)为@"100%"。 ``` ### 取值 增加了NSInteger类型和CGFloat类型的取值范围 增加了确保值在某个范围的方法,示例: ```objective-c // 希望value在0~1之间 CGFloat value =...

releaselog

### 注释 补充了部分接口的注释 ### NSString NSString分类增加了拼接字符串的快捷方法 用法示例: ```objc NSString *str = @"abc".append(@"d").appendCGFloat(1.2).appendReturn().appendNSInteger(50); NSLog(@"%@",str); ``` 控制台输出为: ```objc 2017-04-14 14:32:53.534 AXKitDemo[17111:290832] abcd1.2 50 ``` 接口: ```objc /** 拼接字符串 */ - (NSString *(^)(NSString...

releaselog

https://resume.js.org/zh-cn/

https://resume.js.org/

### 检查清单 - [X] 已经阅读过 [官方文档](https://xaoxuu.com/wiki/stellar/) 相关内容,并尝试进行搜索。 - [ ] 尝试过在本地测试运行官方 [demo](https://github.com/xaoxuu/hexo-theme-stellar-examples/) 源码。 - [ ] 尝试过在 Codespace 中测试运行官方 [demo](https://github.com/xaoxuu/hexo-theme-stellar-examples/) 源码。 ### 问题描述 适用于展示聊天对话,但又无法直接提供截图的场景。 用户信息在 `_data/users.yml` 中配置: ```yaml user1: name:...

todo

### 检查清单 - [X] 已经阅读过 [官方文档](https://xaoxuu.com/wiki/stellar/) 相关内容,并尝试进行搜索。 - [ ] 尝试过在本地测试运行官方 [demo](https://github.com/xaoxuu/hexo-theme-stellar-examples/) 源码。 - [ ] 尝试过在 Codespace 中测试运行官方 [demo](https://github.com/xaoxuu/hexo-theme-stellar-examples/) 源码。 ### 问题描述 现有的表格只有一种样式,如果想实现换行、不滚动、紧凑型就只能改css,可以增加个标签把表格嵌套进去,这样可以支持几种样式可供选择。 ``` {% table style:xx %} 这里写...

todo