-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
added support for UIPageControl #148
base: master
Are you sure you want to change the base?
Changes from 1 commit
f286189
da9a071
9d8f662
3f948b7
ecc76a0
82c6fd5
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
// | ||
// UIPageControl.swift | ||
// Rex | ||
// | ||
// Created by Torsten Curdt on 7/24/16. | ||
// Copyright (c) 2015 Torsten Curdt. All rights reserved. | ||
// | ||
|
||
import ReactiveCocoa | ||
import UIKit | ||
|
||
extension UIPageControl { | ||
|
||
/// Wraps a label's `numberOfPages` value in a bindable property. | ||
public var rex_numberOfPages: MutableProperty<Int> { | ||
return associatedProperty(self, key: &numberOfPagesKey, initial: { $0.numberOfPages }, setter: { $0.numberOfPages = $1 }) | ||
} | ||
|
||
/// Wraps a label's `currentPage` value in a bindable property. | ||
public var rex_currentPage: MutableProperty<Int> { | ||
return associatedProperty(self, key: ¤tPageKey, initial: { $0.currentPage }, setter: { $0.currentPage = $1 }) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think we should use There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. While I am not objecting I am not sure I can follow the argument. What do you mean by "keep this property up-to-date"? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It will keep There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @tcurdt can you please change it to: public var rex_currentPage: MutableProperty<Int> {
return UIControl.rex_value(self, getter: { $0.currentPage }, setter: { $0.currentPage = $1 })
} There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done! |
||
} | ||
} | ||
|
||
private var numberOfPagesKey: UInt8 = 0 | ||
private var currentPageKey: UInt8 = 0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why
label
and notpageControl