HouWan
HouWan
想一个这样的效果
跟`Align by define group`类似,只是这里是注释而已 比如 ``` #import "CoterieLikesVC.h" // 点赞列表 #import "CoterieCommentVC.h" // 评论VC #import "CoterieOCenterVC.h" // 别人的主页VC #import "CoterieMCenterVC.h" // 自己的主页VC #import "CoterieReportVC.h" // 举报VC #import "CoterieDetailMainVC.h" // 动态详情...
一个Swift版本,对比后发现二者有些小差异,不知道谁的合理些。 https://github.com/iCell/Mozi
``` ==2223==AddressSanitizer's allocator is terminating the process instead of returning 0 ==2223==If you don't like this behavior set allocator_may_return_null=1 ==2223==AddressSanitizer CHECK failed: /BuildRoot/Library/Caches/com.apple.xbs/Sources/clang_compiler_rt/clang-902.0.39.1/src/projects/compiler-rt/lib/sanitizer_common/sanitizer_allocator.cc:218 "((0)) != (0)" (0x0, 0x0) #0 0x105717c7b...
Xcode9 编译时,有些语法会有警告。建议处理一下。
非常棒,么么哒
谢谢您,您花钱去学习,还共享出来学习笔记和心得,么么哒。给你小心心❤️❤️❤️❤️❤️❤️❤️
作者是直接切换了`rootViewController`,来达到其他页面切换语言的, 但是这样有个问题,假如用户在其他页面有了操作,切换了`rootViewController`之后,其他页面的操作和状态都没了,感觉不优雅,支付宝这块比微信好很多,支付宝切换多语言之后,其他页面的操作状态都不会有任何变化
如题:要是能使用`Cocoapods`就好了 
不包含白色的图片,就无法添加水印吗? 发现对于大图,比如超过1M的图片,加隐形水印会超级慢
交互式,就是比如,,你看抖音吗?抖音评论列表,它就是交互式的modal
作者写的`DYFStore`框架非常不错,各种情况都考虑到了,不过我有一个小小的建议就是,在阅读源码的过程中,感觉作者是把`OC`简单翻译成`Swift`而已,其实如果纯粹`Swift`写的话,代码量可以精简非常多。 例如使用的都是`OC`的`NSMutableArray`,而不是Swift自己的`Array`, 例如`DYFStore.swift`文件里面的 ```swift public func product(forIdentifier productIdentifier: String) -> SKProduct? { var product: SKProduct? = nil for e in self.availableProducts { let aProduct = e as! SKProduct let id...