获取程序地址或路径 Web地址: JS: var baseUrl = window.location.host;//不带http:// 结果为: localhost:8033 asp.net: string host = HttpContext.Current.Request.Url.Host; s ...
分类:
其他好文 时间:
2021-01-07 12:20:42
阅读次数:
0
最近在排查生产环境响应慢的问题时,通过排查数据库、内存、网络等指标,都未发现异常。 在排查redis慢日志时,发现调用了API底层的Keys命令,导致生产环境redis命令操作都比较慢,延迟比较大。 因此, 生产环境redis是不允许使用keys ,flushall这些命令的。 如果要使用类似key ...
分类:
其他好文 时间:
2020-06-12 00:38:39
阅读次数:
78
// for (NSString *fontFamilyName in [UIFont familyNames]) { // NSLog(@"family: '%@'", fontFamilyName); // for (NSString *fontName in [UIFont fontNames ...
分类:
移动开发 时间:
2020-05-07 21:26:18
阅读次数:
143
#pragma mark - 字体、颜色相关 #define kFONT_SIZE(f) [UIFont systemFontOfSize:(f)] #define kFONT_BOLD_SIZE(f) [UIFont boldSystemFontOfSize:(f)] #define kFONT_ ...
分类:
移动开发 时间:
2019-07-12 14:20:43
阅读次数:
133
UILabel * label = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 20, 20)]; label.font = [UIFont systemFontOfSize:14]; label.numberOfLines = 0; [self.... ...
分类:
其他好文 时间:
2019-03-30 17:26:08
阅读次数:
365
func showAllFonts(){ let familyNames = UIFont.familyNames var index:Int = 0 for familyName in familyNames { let fontNames = ... ...
分类:
编程语言 时间:
2018-12-21 19:38:29
阅读次数:
361
一、经常使用的,基本就是每次项目迭代都需要使用的 UIView、UILabel、UIImage、UIColor、UIFont、UIImageView、UITextField、UIButton、 UIScrollView、UITableView、UITableViewCell、UICollection ...
分类:
其他好文 时间:
2018-12-14 19:58:38
阅读次数:
188
1 /** 2 * 获取高度 3 * 4 * @param font 目标字体 5 * @param width 约束宽度 6 * 7 * @return 目标高度 8 */ 9 - (CGFloat)ptv_heightWithFont:(UIFont *)font constrainedToWi... ...
分类:
移动开发 时间:
2018-11-15 18:33:14
阅读次数:
221
1 /** 2 * 获取高度 3 * 4 * @param font 目标字体 5 * @param width 约束宽度 6 * 7 * @return 目标高度 8 */ 9 - (CGFloat)ptv_heightWithFont:(UIFont *)font constrainedToWi... ...
分类:
移动开发 时间:
2018-11-15 18:28:06
阅读次数:
222
最常见的情况字体的适配 UIFont新建分类重写Load方法 #define SCALE(s) ((s) / 375.0 * SCREEN_WIDTH) + (void)load { // 自己的方法 Method newMethod =class_getClassMethod([self clas ...
分类:
移动开发 时间:
2018-06-21 19:42:28
阅读次数:
1049