Skip to content
This repository has been archived by the owner on Aug 13, 2021. It is now read-only.

Commit

Permalink
Add reactive UILabel type with text property.
Browse files Browse the repository at this point in the history
Summary: Closes #84

Reviewers: O2 Material Motion, O4 Material Apple platform reviewers, #material_motion, markwei

Reviewed By: O2 Material Motion, O4 Material Apple platform reviewers, #material_motion, markwei

Tags: #material_motion

Differential Revision: http://codereview.cc/D3209
  • Loading branch information
Jeff Verkoeyen committed May 12, 2017
1 parent b0be085 commit 5bef836
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions src/reactivetypes/Reactive+UILabel.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
/*
Copyright 2017-present The Material Motion Authors. All Rights Reserved.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

import UIKit

extension Reactive where O: UILabel {

public var text: ReactiveProperty<String> {
let view = _object
return _properties.named(#function) {
return .init("\(pretty(view)).\(#function)", initialValue: view.text ?? "") {
view.text = $0
}
}
}
}

0 comments on commit 5bef836

Please sign in to comment.