Skip to content

Commit

Permalink
Fix incorrect default property values for UIKit
Browse files Browse the repository at this point in the history
  • Loading branch information
anaisbetts committed Jun 12, 2013
1 parent 712fd7c commit 635027d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ReactiveUI.Platforms/Cocoa/CocoaDefaultPropertyBinding.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ public Tuple<string, int> GetPropertyForControl(object control)
// specific to least specific.
#if UIKIT
var items = new[] {
new { Type = typeof(UISlider), Property = "DoubleValue" },
new { Type = typeof(UITextView), Property = "Value" },
new { Type = typeof(UITextField), Property = "StringValue" },
new { Type = typeof(UISlider), Property = "Value" },
new { Type = typeof(UITextView), Property = "Text" },
new { Type = typeof(UITextField), Property = "Text" },
new { Type = typeof(UIButton), Property = "Title" },
new { Type = typeof(UIImageView), Property = "Image" },
};
Expand Down

0 comments on commit 635027d

Please sign in to comment.