changeset 2442:725a6fbb44cd

iOS: DWComboBox needs to initialize the array so the list works.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Fri, 09 Apr 2021 08:41:34 +0000
parents a80df2e7195d
children 42ba334cb8f7
files ios/dw.m
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/ios/dw.m	Thu Apr 08 17:34:25 2021 +0000
+++ b/ios/dw.m	Fri Apr 09 08:41:34 2021 +0000
@@ -2381,6 +2381,7 @@
 
         /* Set UI defaults */
         toolbarStyle = UIBarStyleDefault;
+        dataArray = [[NSMutableArray alloc] init];
 
         /* Setup the arrow image */
         UIButton *imageButton = [UIButton buttonWithType:UIButtonTypeCustom];