swift使用查阅资料备份4

Swift - RxSwift的使用详解6(观察者2: 自定义可绑定属性)

http://www.hangge.com/blog/cache/detail_1946.html

extension UILabel {

    public var fontSize: Binder<CGFloat> {

        return Binder(self) { label, fontSize in

            label.font = UIFont.systemFont(ofSize: fontSize)

        }

    }

0x000000010a90f240 CEHuiMin`partial apply forwarder for reabstraction thunk helper from @callee_owned (@owned __ObjC.UILabel, @unowned CoreGraphics.CGFloat) -> () to @callee_owned (@owned __ObjC.UILabel, @in CoreGraphics.CGFloat) -> () at HMLoanDIYController.swift

RxSwift进阶:尝试为自定义代理方法添加Reactive扩展

https://www.jianshu.com/p/6dc22b8bf036

用RxSwift仿写知乎日报

http://www.cocoachina.com/swift/20170222/18727.html

@objc关键字

https://blog.csdn.net/love_u_u12138/article/details/51146424

SwiftOC混编时, 关于@objc的作用

https://www.cnblogs.com/Rinpe/p/5466470.html

猜你喜欢

转载自www.cnblogs.com/feng9exe/p/8987164.html