hstdt

Results 33 comments of hstdt

@longitachi 如果提`pull request`的话,选择gif的时候,更倾向于把`showClipDirectlyIfOnlyHasClipTool`增加一个block开放给用户,还是判断UIImage是否是GIF? ![CleanShot 2022-06-23 at 10 53 31](https://user-images.githubusercontent.com/10215098/175197127-1d0620ea-2740-4d5f-8bf9-c1b4501ab68e.png)

@longitachi 按照这个思路写了一下,发现如果有需求就是允许裁剪gif的第一张图,然后拿来用,判断model/UIImage的类型就会有问题。这个是不是只能交给使用者实时来判断。

一个不完美的workaround思路 设置`saveNewImageAfterEdit`为false,然后在`selectImageBlock`中重新通过asset将原始gif图读取出来。

iOS 14 Xcode 12 存在一样的情况 应该是MLeaksFinder的问题

`UITextField *searchField = [self.searchController.searchBar valueForKey:@"_searchField"];` 在iOS13下,需要使用新属性,否则也是闪退 `UITextField *searchField = self.searchController.searchBar.searchTextField;`

> UITableViewCell中cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;方框问题 > 在xcode10上打包运行到ios13会有方框怎么解决 你用了VVImageTint这种框架吧,和新api重名了

> > 已解决,UITableViewCell中cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;方框问题 > > 怎么解决的,是你自己的代码吗 iOS13有和这个方法的同名的系统Api ![image](https://user-images.githubusercontent.com/10215098/65588594-643ad880-dfba-11e9-9698-7b7c17a482e8.png)

I believe it's caused by `updateOverlayScrollContentSize` in `ContainerViewController`, but my fix still not perfect. bottom tableview/scrollview content size changed(estimatedRowHeight tableView when scrolls to bottom, or load more) --> overlayScrollView content...

> @hstdt @mohanthakur92 I'm having same issue, did you guys solve it? No, you can try this one. https://github.com/pujiaxin33/JXPagingView

> > project->build settings->search path->Library Search Paths add Code > > ``` > > "$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)" > > "$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)" > > ``` > > > > > > > > >...