Commit Graph

219 Commits

Author SHA1 Message Date
Mo Ramezanpoor
301ad9f438 WIP: Fix a bunch of RxCocoa compilation issues. 2016-08-16 15:01:07 +01:00
Mo Ramezanpoor
fcf8e4d092 WIP: Updates code for Xcode 8 beta 6 using the migrator with manual auditing.
The code doesn’t compile yet.
2016-08-16 14:00:14 +01:00
Jérôme Alves
e59adc3ae9 Updates Unit Tests and makes them succeed. 2016-08-15 17:46:13 +02:00
Jérôme Alves
e4e422c4f1 Merge branch 'swift-3.0' into swift-3.0-removing-rx_-prefix
Conflicts:
	RxCocoa/Common/Observables/NSNotificationCenter+Rx.swift
	RxCocoa/OSX/NSImageView+Rx.swift
	RxCocoa/iOS/UICollectionView+Rx.swift
	RxCocoa/iOS/UIControl+Rx.swift
	RxCocoa/iOS/UIImageView+Rx.swift
	RxCocoa/iOS/UILabel+Rx.swift
	RxCocoa/iOS/UITableView+Rx.swift
	RxExample/RxDataSources/DataSources+Rx/UISectionedViewType+RxAnimatedDataSource.swift
	RxExample/RxExample/Examples/APIWrappers/APIWrappersViewController.swift
	RxExample/RxExample/Examples/GitHubSearchRepositories/GitHubSearchRepositoriesViewController.swift
	RxExample/RxExample/Examples/GitHubSignup/UsingDriver/GitHubSignupViewController2.swift
	RxExample/RxExample/Examples/GitHubSignup/UsingVanillaObservables/GitHubSignupViewController1.swift
	RxExample/RxExample/Examples/ImagePicker/UIImagePickerController+RxCreate.swift
	RxExample/RxExample/Examples/OSX simple example/IntroductionExampleViewController.swift
	RxExample/RxExample/Examples/SimpleTableViewExample/SimpleTableViewExampleViewController.swift
	RxExample/RxExample/Examples/SimpleTableViewExampleSectioned/SimpleTableViewExampleSectionedViewController.swift
	RxExample/RxExample/Examples/SimpleValidation/SimpleValidationViewController.swift
	RxExample/RxExample/Examples/TableViewPartialUpdates/PartialUpdatesViewController.swift
	RxExample/RxExample/Examples/TableViewWithEditingCommands/TableViewWithEditingCommandsViewController.swift
	RxExample/RxExample/Examples/WikipediaImageSearch/Views/WikipediaSearchCell.swift
	RxExample/RxExample/Examples/WikipediaImageSearch/Views/WikipediaSearchViewController.swift
	Tests/RxCocoaTests/DelegateProxyTest.swift
	Tests/RxCocoaTests/KVOObservableTests.swift
	Tests/RxCocoaTests/RxTest+Controls.swift
	Tests/RxCocoaTests/UICollectionView+RxTests.swift
	Tests/RxCocoaTests/UIScrollView+RxTests.swift
	Tests/RxCocoaTests/UITableView+RxTests.swift
2016-08-15 12:17:26 +02:00
Krunoslav Zaher
4f54c9bf5a Merge branch 'swift-3.0' of github.com:kzaher/RxSwift into swift-3.0 2016-08-15 01:12:21 +02:00
Krunoslav Zaher
8b00921da7 Merge branch 'develop' into swift-3.0 2016-08-15 01:08:36 +02:00
Krunoslav Zaher
bdbcb5bc87 Improves UITableView and UICollection view bindings behavior. 2016-08-14 23:25:54 +02:00
Mo Ramezanpoor
75971c61c6 Replaces all calls to AnonymousDisposable.init() with Disposables.create(). 2016-08-10 15:00:29 +01:00
Mo Ramezanpoor
1fe15bb9da Replaces all calls to NopDisposable.instance with Disposables.create(). 2016-08-10 14:47:53 +01:00
Jérôme Alves
10ff55cfba Moves RxCocoa extensions from rx_ syntax to rx. syntax.
The main work is done in this commit but the feature it's still "work in progress"
2016-08-09 00:17:38 +02:00
Krunoslav Zaher
441a4a22db Modernizes doOn operator. 2016-08-07 18:24:33 +02:00
Krunoslav Zaher
d1cde77b18 Modernizes image view extensions. 2016-08-07 18:08:13 +02:00
Krunoslav Zaher
afd40f5d8b Modernizes UICollectionView extensions. 2016-08-07 16:48:25 +02:00
Krunoslav Zaher
10b0d39e05 Fixes warnings. 2016-08-07 16:04:47 +02:00
Krunoslav Zaher
7b6a244f45 Fixes problem with data sources. 2016-08-07 15:23:17 +02:00
Krunoslav Zaher
e2c3330d61 Fixes default datasources implementation. #825 2016-08-07 15:12:54 +02:00
Yuki Nagai
7f84ec604e WIP. Update for Xcode 8 beta 4. 2016-08-02 15:46:11 +09:00
Krunoslav Zaher
c844b6bdb3 Merge branch 'develop' into swift-3.0 2016-08-01 10:46:20 +02:00
Krunoslav Zaher
d12b8321d2 Merge pull request #804 from devxoul/tableview-willdisplaycell
Fix type mismatch in UITableView.rx_willDisplayCell
2016-07-27 16:00:19 +02:00
Suyeol Jeon
f303efb077 Fix type mismatch in UITableView.rx_willDisplayCell 2016-07-27 04:15:17 +09:00
Krunoslav Zaher
e79457dcd3 Fixes for Xcode beta 3. 2016-07-20 22:14:59 +02:00
Krunoslav Zaher
9cac0cc234 Adaptations for Swift 3.0. 2016-07-10 14:55:18 +02:00
sergdort
cfb8b1558a Merge branch 'master' into swift-3.0
Conflicts:
	RxExample/RxDataSources/DataSources/CollectionViewSectionedDataSource.swift
	RxExample/RxDataSources/DataSources/Differentiator.swift
	RxExample/RxDataSources/DataSources/TableViewSectionedDataSource.swift
	RxExample/RxExample.xcodeproj/project.pbxproj
	RxExample/RxExample.xcodeproj/xcshareddata/xcschemes/RxExample-iOS-no-module.xcscheme
	RxExample/RxExample/Examples/TableViewPartialUpdates/PartialUpdatesViewController.swift
	RxExample/RxExample/Examples/TableViewWithEditingCommands/TableViewWithEditingCommandsViewController.swift
	RxExample/RxExample/Services/HtmlParsing.swift
	Tests/RxCocoaTests/CLLocationManager+RxTests.swift
	Tests/RxCocoaTests/UICollectionView+RxTests.swift
2016-07-05 18:00:36 +03:00
Krunoslav Zaher
e20ac5fbb7 Adds simple data source usage examples in inline docs. 2016-07-04 01:42:26 +02:00
Krunoslav Zaher
f95b1ed122 Unit tests, documents and improves data source/delegate interfaces. 2016-07-04 01:02:08 +02:00
Krunoslav Zaher
933cb02cb0 Adds UIButton.setTitle extensions to tvOS. 2016-06-26 14:37:10 +02:00
Krunoslav Zaher
7a15347943 Adds UIButton.setTitle(:forState:) extensions. 2016-06-24 23:11:08 +02:00
Jamie Pinkham
5d47db7609 fix errors with RxCocoa introduced by merge 2016-06-22 10:15:37 -04:00
Jamie Pinkham
5a9f47262a Merge branch 'upstream-develop' into swift-3.0
# Conflicts:
#	RxCocoa/Common/CocoaUnits/Driver/Driver+Subscription.swift
#	RxCocoa/Common/CocoaUnits/UIBindingObserver.swift
#	RxSwift/Schedulers/MainScheduler.swift
2016-06-22 09:54:44 -04:00
Jamie Pinkham
924a9a4983 clean up syntax to get test building
still trying to work out the ambiguious use compiler error
2016-06-22 09:34:04 -04:00
Jamie Pinkham
c35136fe0b get example projects working.. woo! 2016-06-18 15:21:44 -07:00
Jamie Pinkham
39a20441e1 begin fixing up the examples 2016-06-18 01:24:07 -07:00
Jamie Pinkham
c4cf2e0d12 builds ios, ios rx cocoa and ios rx blocking 2016-06-17 23:19:16 -07:00
Jamie Pinkham
0e38ecbc87 Merge branch 'develop' into swift-3.0
# Conflicts:
#	Documentation/DesignRationale.md
#	Rx.playground/Pages/Introduction.xcplaygroundpage/Contents.swift
#	RxCocoa/Common/DelegateProxyType.swift
#	RxCocoa/iOS/UICollectionView+Rx.swift
#	RxCocoa/iOS/UIControl+Rx.swift
#	RxCocoa/iOS/UIScrollView+Rx.swift
#	RxCocoa/iOS/UITableView+Rx.swift
#	RxExample/RxDataSources/DataSources+Rx/ObservableConvertibleType+Differentiator.swift
#	RxSwift/Concurrency/Lock.swift
#	RxSwift/Disposables/CompositeDisposable.swift
#	RxSwift/Event.swift
#	RxSwift/Extensions/String+Rx.swift
#	RxSwift/Schedulers/OperationQueueScheduler.swift
2016-06-17 21:14:06 -07:00
Krunoslav Zaher
49ccdac810 Merge pull request #717 from solidcell/tab-bar-delegate-proxy
UITabBar delegate proxy
2016-06-10 11:34:40 +02:00
Jesse Farless
7c706713b5 Rename delegate methods to remove 'Item' suffix 2016-06-08 11:46:15 +02:00
Suyeol Jeon
e291bff0f0 Add UIScrollView.rx_scrollEnabled 2016-06-08 04:12:53 +09:00
Kyle Fuller
aba717b642 Add rx_title to UIViewController 2016-05-30 09:19:26 -07:00
Jesse Farless
75d1983afc Add RxTabBarDelegateProxy and UITabBar+Rx with delegate methods 2016-05-28 14:27:19 +02:00
Krunoslav Zaher
a5f1d1eef7 Merge branch 'feature/uialert-action' of git://github.com/AndrewSB/RxSwift into AndrewSB-feature/uialert-action 2016-05-27 23:24:50 +02:00
Krunoslav Zaher
38f5eb210f Merge branch 'uipagecontrol-add-rx' of git://github.com/punty/RxSwift into punty-uipagecontrol-add-rx 2016-05-27 22:34:01 +02:00
Krunoslav Zaher
eda25e28ff Simplifies sectioned view extensions. 2016-05-20 22:34:13 +02:00
Krunoslav Zaher
b1dd82e831 Merge branch 'UIPickerView+Rx' of git://github.com/sergdort/RxSwift into sergdort-UIPickerView+Rx 2016-05-18 22:14:45 +02:00
sergdort
43269fa279 Added rx_itemSelected for UIPickerView 2016-05-13 10:55:21 +03:00
Krunoslav Zaher
bee2ce5e4b Provides explanations for check. 2016-05-13 00:47:44 +02:00
Krunoslav Zaher
1aa1b570b0 Fixes problems with two way binding that was caused by rx_text and always setting the text value even when the value was equal, and thus clearing the marked text state. #649 2016-05-13 00:38:26 +02:00
kumapo
e1a6847fbf Fix pre-release-tests error 2016-05-09 20:47:54 +09:00
kumapo
cbe17b7c1c Add rx_title property to UINavigationItem 2016-05-09 18:20:53 +09:00
Andrés Cecilia
881909a687 Fix to support iOS 7 2016-05-08 22:42:53 +02:00
Krunoslav Zaher
d197ce0fbb Exposes installForwardDelegate and transforms proxyForObject into protocol extension. 2016-05-08 21:32:02 +02:00
Andrew Breckenridge
0188dccd4f create UIAlertAction+Rx.swift 2016-05-07 12:23:50 -07:00
Yury Korolev
c5a21681a8 Rename Rx to Reactive protocol 2016-05-02 20:05:38 +03:00
Yury Korolev
3e1b2d0789 Typed rx_event for UIGestureRecognizer 2016-05-02 13:36:09 +03:00
Thane Gill
37d685690c UILabel rx_text as String? 2016-04-30 11:13:38 -07:00
Yury Korolev
353b0b55c3 Use partial application with AnonymousDisposable if possible 2016-04-23 21:22:10 +03:00
Krunoslav Zaher
4e6880d218 Fixes for RxSwift and Swift 3.0. 2016-04-22 20:49:18 +02:00
Krunoslav Zaher
c4ca775bdc Changes for Swift 3.0. 2016-04-22 13:14:41 +02:00
Krunoslav Zaher
3294458b87 Adds rx_willDisplayCell and rx_didEndDisplayingCell to UITableView. 2016-04-18 23:11:18 +02:00
Krunoslav Zaher
72edf869a0 Removes distinctUntilChanged because is was creating a hidden state that can cause issues in some situations. 2016-04-17 17:14:55 +02:00
Francesco Puntillo
2c7a403dae adjust formatting for UIPageControl+RX 2016-04-14 17:14:20 +08:00
Francesco Puntillo
8b4642a1c0 add UIPageControl to RxCocoa 2016-04-14 15:45:35 +08:00
Krunoslav Zaher
e16ce89f3f Documents parts of RxCocoa. 2016-04-11 00:31:26 +02:00
Krunoslav Zaher
18cf20820f Merge pull request #550 from stack/uisearchbar-cancel
UISearchBar Cancel Event
2016-04-10 12:57:13 +02:00
Stephen H. Gerstacker
d6731613d9 Switched to ButtonClicked over Tap for UISearchBar delegate methods 2016-04-09 18:22:29 -04:00
Krunoslav Zaher
f50a33c1e2 Fixes warnings with deprecated selector specifications. 2016-04-08 00:08:03 +02:00
Krunoslav Zaher
77d72dcaee Updates comments. 2016-04-07 23:22:37 +02:00
Stephen H. Gerstacker
f58d032d34 tvOS Fixes for UISearchBar
- `searchBarCancelButtonClicked:` is only available on iOS.
- UISearchBar instantiation is not supported on tvOS, so all subclass
  delegate methods and tests are skipped.
2016-03-27 21:31:53 -04:00
Krunoslav Zaher
6292a3303a Merge pull request #556 from sergdort/rx_search_controller_delegate_proxy
Added reactive extensions for UISearchController
2016-03-27 20:23:57 +02:00
Stephen H. Gerstacker
2db92e9727 Upgraded UISearchBar selectors to Swift 2.2 selectors 2016-03-26 21:02:09 -04:00
Stephen H. Gerstacker
dd37af0069 Additional UISearchBar Methods
- Added the searchTap for the "searchBarSearchButtonClicked:" delegate
  method.

- Added the "rx_createDelegateProxy" method to UISearchBar.
2016-03-26 20:57:23 -04:00
Krunoslav Zaher
1ed2daed68 Merge pull request #569 from ejensen/typos
Typo fixes
2016-03-23 23:07:50 +01:00
Eric Jensen
ddf9cdd33f Correct typos 2016-03-22 20:10:44 -07:00
Eric Jensen
2b0dd31a9f Correct mixed indentation by replacing tabs with spaces 2016-03-22 20:04:39 -07:00
Stephen H. Gerstacker
e1ea14819c Merge branch 'develop' into uisearchbar-cancel 2016-03-22 20:41:09 -04:00
sergdort
2f16a4faa7 Adds reactive extensions for UISearchController and tests to cover them 2016-03-22 16:50:07 +02:00
Krunoslav Zaher
bd8b188a49 Fixes for Swift 2.2 warnings in unit tests. 2016-03-22 12:12:15 +01:00
Stephen H. Gerstacker
f91b86b8d2 Merge branch 'develop' into uisearchbar-cancel 2016-03-22 06:57:56 -04:00
Krunoslav Zaher
65644c6160 Fixes Swift 2.2 warnings. 2016-03-22 11:29:39 +01:00
Jorge Bernal
eddbd23aa5 Use new associatedtype syntax 2016-03-22 11:09:16 +01:00
Stephen H. Gerstacker
92911a6876 Added rx_cancelTap for the searchBarCancelButtonClicked: delegate method 2016-03-13 21:04:31 -04:00
Stephen H. Gerstacker
097467e07c Merge branch 'develop' into uisearchbar-additions 2016-03-12 22:08:13 -05:00
Krunoslav Zaher
e43a6785be Documents why using NSTextStorage + observeOn(MainScheduler.asyncInstance) for UITextField extensions. 2016-03-12 21:36:43 +01:00
Krunoslav Zaher
19900bfaac Fixes problem with UITextView two way binding. 2016-03-12 21:30:48 +01:00
Denis Lebedev
0567020538 Simplify computed properties 2016-03-07 17:31:00 +00:00
Krunoslav Zaher
18acdd02ff Fixes rx_badgeValue inline documentation. 2016-03-05 21:04:06 +01:00
Mateusz Derks
8b9bbff4ee Adds 'rx_badgeValue' to UITabBarItem 2016-03-04 14:14:38 +01:00
sambae
8559a67d89 Adds rx_progress to UIProgressView 2016-02-28 01:26:32 -05:00
Stephen H. Gerstacker
74dd160d56 Support for UISearchBar selectedScopeButtonIndex 2016-02-27 14:06:20 -05:00
Adam Ritenauer
55f3ec4041 Adds a work around to an error in swifts handling of preprocessor directives 2016-02-15 09:32:05 -08:00
Krunoslav Zaher
03aa560de0 Adds rx_selected to UIControl. 2016-02-14 22:44:13 +01:00
Krunoslav Zaher
b9d6aeb49c Selects release version of the RxExample app. 2016-02-14 17:22:44 +01:00
Krunoslav Zaher
300c44aced More workarounds for Swift compiler bugs. 2016-02-13 23:36:01 +01:00
Krunoslav Zaher
b08bf24201 Adds workarounds for compiler bugs. 2016-02-13 23:15:57 +01:00
Krunoslav Zaher
ba2787c3cb Fixes referencing self instead of parameter. 2016-02-13 23:12:34 +01:00
Krunoslav Zaher
7dc8dfc6d1 Applies UIBindingObserver. 2016-02-13 22:12:50 +01:00
Krunoslav Zaher
2aebe1499f Adds UIBindingObserver. 2016-02-13 21:25:31 +01:00
Krunoslav Zaher
e855916b47 Merge pull request #431 from mwoollard/develop
Add rx wrapper for UITableViewDelegate tableVIew:accessoryButtonTappedForRowWithIndexPath: method
2016-02-12 11:08:52 +01:00
Krunoslav Zaher
bbb5b6f300 Merge pull request #466 from sergdort/swift_evolution_currying
Changes for currying
2016-02-12 11:07:03 +01:00
Mark Woollard
08a3161354 Rx wrapper for UITableViewDelegate tableView:accessoryButtonTappedForRowWithIndexPath: method 2016-02-05 20:14:34 +00:00
Krunoslav Zaher
8e9df5acc8 Merge pull request #414 from MadsBogeskov/master
Added reactive wrapper for the network activity indicator in UIApplication
2016-02-04 12:50:43 +01:00