Picker Item Selection on iOS
This iOS platform-specific controls when item selection occurs in a Picker
, allowing the user to specify that item selection occurs when browsing items in the control, or only once the Done button is pressed. It's consumed in XAML by setting the Picker.UpdateMode
attached property to a value of the UpdateMode
enumeration:
<ContentPage ...
xmlns:ios="clr-namespace:Xamarin.Forms.PlatformConfiguration.iOSSpecific;assembly=Xamarin.Forms.Core">
<StackLayout Margin="20">
<Picker ... Title="Select a monkey" ios:Picker.UpdateMode="WhenFinished">
...
</Picker>
...
</StackLayout>
</ContentPage>
Alternatively, it can be consumed from C# using the fluent API:
using Xamarin.Forms.PlatformConfiguration;
using Xamarin.Forms.PlatformConfiguration.iOSSpecific;
...
picker.On<iOS>().SetUpdateMode(UpdateMode.WhenFinished);
The Picker.On<iOS>
method specifies that this platform-specific will only run on iOS. The Picker.SetUpdateMode
method, in the Xamarin.Forms.PlatformConfiguration.iOSSpecific
namespace, is used to control when item selection occurs, with the UpdateMode
enumeration providing two possible values:
Immediately
– item selection occurs as the user browses items in thePicker
. This is the default behavior in Xamarin.Forms.WhenFinished
– item selection only occurs once the user has pressed the Done button in thePicker
.
In addition, the SetUpdateMode
method can be used to toggle the enumeration values by calling the UpdateMode
method, which returns the current UpdateMode
:
switch (picker.On<iOS>().UpdateMode())
{
case UpdateMode.Immediately:
picker.On<iOS>().SetUpdateMode(UpdateMode.WhenFinished);
break;
case UpdateMode.WhenFinished:
picker.On<iOS>().SetUpdateMode(UpdateMode.Immediately);
break;
}
The result is that a specified UpdateMode
is applied to the Picker
, which controls when item selection occurs: