zxb

Results 3 comments of zxb

if dont want saveInPublicStorage: true find package file : /Users/****/Documents/flutter/.pub-cache/hosted/pub.flutter-io.cn/flutter_downloader-1.9.1/android/src/main/kotlin/vn/hunghd/flutterdownloader/DownloadWorker.kt add if (newFile.exists()) newFile.delete(); after val newFile = File(savedDir, filename) ``` private fun createFileInAppSpecificDir(filename: String, savedDir: String): File? { val...

1. 标题像素未对齐,导致有点模糊,原因:坐标和大小不是整数。解决:使用ceilf()方法。 例子:改变CATextLayer *layer的大小位置时,都处理一下 ``` layer.bounds = CGRectMake(0, 0, ceilf(size.width), ceilf(size.height)); layer.position = CGPointMake(ceilf(point.x), ceilf(point.y)); ``` 2. tableView的label像素未对齐,导致模糊,原因: ``` -(CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{ return 0.1; } ``` 改成 ` return CGFLOAT_MIN;...

具体用模拟器的 ` Debug `->` Color Misaligned Images ` 查看 红色就是没有对齐