-
Notifications
You must be signed in to change notification settings - Fork 211
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
MT.D usability improvements #177
base: master
Are you sure you want to change the base?
Conversation
…erridden; * Elements.cs: Make IndexOf public; fix the doc for Insert
@@ -25,7 +25,7 @@ public class DialogViewController : UITableViewController | |||
{ | |||
public UITableViewStyle Style = UITableViewStyle.Grouped; | |||
public event Action<NSIndexPath> OnSelection; | |||
UISearchBar searchBar; | |||
protected UISearchBar searchBar; |
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.
if something becomes protected, then it has to have public naming rules, so it would hav eto be "SearchBar"
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.
I will correct this and resubmit a pull request!
On Wed, Mar 6, 2013 at 12:10 PM, Miguel de Icaza
notifications@github.comwrote:
In MonoTouch.Dialog/DialogViewController.cs:
@@ -25,7 +25,7 @@ public class DialogViewController : UITableViewController
{
public UITableViewStyle Style = UITableViewStyle.Grouped;
public event Action OnSelection;
UISearchBar searchBar;
protected UISearchBar searchBar;
if something becomes protected, then it has to have public naming rules,
so it would hav eto be "SearchBar"—
Reply to this email directly or view it on GitHubhttps://github.com//pull/177/files#r3269596
.
…C to check for that interface instead of StyledStringElement
… be created. Allow RadioElement to be overridden.
…Need this so I can hide a popover when the app is put into the background.
…erridden; * Elements.cs: Make IndexOf public; fix the doc for Insert
…C to check for that interface instead of StyledStringElement
… be created. Allow RadioElement to be overridden.
…Need this so I can hide a popover when the app is put into the background.
Few improvements to MT.D,
Thank you for the great work! By switching to MT.D, I was able to eliminate a bunch of cruft classes and vastly simplify the code!
Updated to comply with public naming rules.