# HG changeset patch # User bsmith@81767d24-ef19-dc11-ae90-00e081727c95 # Date 1617957694 0 # Node ID 725a6fbb44cd8f79b27fce72ba907756fe072455 # Parent a80df2e7195dbb07f0e76487d2ccb5ca49c19bf0 iOS: DWComboBox needs to initialize the array so the list works. diff -r a80df2e7195d -r 725a6fbb44cd ios/dw.m --- 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];