omz:forum

    • Register
    • Login
    • Search
    • Recent
    • Popular

    Welcome!

    This is the community forum for my apps Pythonista and Editorial.

    For individual support questions, you can also send an email. If you have a very short question or just want to say hello — I'm @olemoritz on Twitter.


    Problems with ios15

    Pythonista
    6
    37
    5940
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • cvp
      cvp @frankL last edited by

      @frankL said

      What is strange is that this same function in several other scripts also stopped working

      If you import the same module in several scripts and if you modified (erroneously 😢) this module, it is normal that you could get the same error in these scripts.

      1 Reply Last reply Reply Quote 0
      • frankL
        frankL last edited by

        I added those three lines and now it prints the correct selection from within def tableview_did_select but it apparently returns 'none' which is what gets populated into the TextView field. Here is the exact script:

        import ui
        #
        def show_list_dialog(items=None, *args, **kwargs):
        	items = items or []
        	tbl = ui.TableView(**kwargs)
        	tbl.data_source = ui.ListDataSource(items)
        	my_sel = {'value': None}
        	class MyTableViewDelegate (object):
        		def tableview_did_select(self, tableview, section, row):
        			my_sel['value'] = tableview.data_source.items[row]
        			tableview.close()
        			print('my_sel',my_sel['value'])
        	tbl.delegate = MyTableViewDelegate()
        	tbl.present(style='sheet')
        	tbl.wait_modal()
        	return my_sel['value']
        #
        w, h = ui.get_screen_size()
        view = ui.View(name="Frank's Library", bg_color='lightblue', frame=(0, 0, w, h))
         
        def select_author(sender):
        	author_unique = ['Baldacci,David', 'Barr,Nevada', 'Bartol,Amy', 'Bernt,Eric', 'Brandt,Kylie', 'Bruni,Riccardo', 'Bryndza,Robert', 'Burke,James Lee', 'Burton,Mary', 'Butcher,Jim', 'Carlson,Tucker', 'Carrol,Sean', 'Case,Andrew', 'Chernov,Ron', 'Clayton,MegWaite', 'Coben,Harlan', 'Cole,Bobby', 'Connelly,Michael', 'Cornwell,Bernard', 'Cornwell,Patricia', 'Cowie,Amber', 'Crombie,Deborah', 'Crosby,Ellen', 'Cross,Katie', 'Cussler,Clive', 'Delaney,Matthew B.J.', 'Dilts,Tyler', 'Dorsey,Tim']
        	f = (0, 0, 400, 300)
        	selected_author = show_list_dialog(author_unique, frame=f, name='Select an Author')
        	author_result.text = str(selected_author)
        	return
         
        author_button = ui.Button(title='Author', frame=(10,5,350,100), border_color='black', border_width=2, background_color='#EAECEE', action=select_author, font=('Arial Rounded MT Bold',18))
        author_button.width=70
        author_button.height=40
        view.add_subview(author_button)
        #
        global author_result
        author_entry=''
        author_result = ui.TextView(name='author',frame=(100,5,250,40), border_color='black', border_width=3, text=author_entry, font=('Arial Rounded MT Bold',16))
        view.add_subview(author_result)
         
        nav_view = ui.NavigationView(view)
        nav_view.present('sheet')
        
        1 Reply Last reply Reply Quote 0
        • frankL
          frankL last edited by

          BTW the ios version is 15.1.1 on iPhone 12

          cvp 1 Reply Last reply Reply Quote 0
          • cvp
            cvp @frankL last edited by cvp

            @frankL For me, tapping Author, selecting one, fills the TextView and prints correctly (on a IPad 15.1) Remark that 15.1.1 is not yet for iPad

            1 Reply Last reply Reply Quote 0
            • frankL
              frankL last edited by

              I get that same thing in the console but it doesn't populate the TextView field. It doesn't appear to be passing the value of my_sel['value'] so I put the assignment line into the def tableview_did_select function and it works. This seems like a real kluge! Beware ios15.1.1

              def show_list_dialog(items=None, *args, **kwargs):
                  items = items or []
                  tbl = ui.TableView(**kwargs)
                  tbl.data_source = ui.ListDataSource(items)
                  my_sel = {'value': None}
                  class MyTableViewDelegate (object):
                      def tableview_did_select(self, tableview, section, row):
                          my_sel['value'] = tableview.data_source.items[row]
                          tableview.close()
                          print('my_sel',my_sel['value'])
                          author_result.text = my_sel['value']
                  tbl.delegate = MyTableViewDelegate()
                  tbl.present(style='sheet')
                  tbl.wait_modal()
                  return my_sel['value']
              
              cvp 1 Reply Last reply Reply Quote 0
              • cvp
                cvp @frankL last edited by cvp

                @frankL why do you pass via this my_sel['value'] and not via TableView.selected_row?
                Check here-under which lines are commented to show they are unused

                    #my_sel = {'value': None}
                    class MyTableViewDelegate (object):
                        def tableview_did_select(self, tableview, section, row):
                            #my_sel['value'] = tableview.data_source.items[row]
                            tableview.close()
                            #print('my_sel',my_sel['value'])
                            #author_result.text = my_sel['value']
                    tbl.delegate = MyTableViewDelegate()
                    tbl.present(style='sheet')
                    tbl.wait_modal()
                    return tbl.data_source.items[tbl.selected_row[1]]
                    #return my_sel['value']
                
                1 Reply Last reply Reply Quote 0
                • frankL
                  frankL last edited by

                  I did that and now it returns the first item in the list (''Baldacci,David') regardless of which item is selected. Where is "selected_row" defined?

                  cvp 1 Reply Last reply Reply Quote 0
                  • cvp
                    cvp @frankL last edited by cvp

                    @frankL said

                    Where is "selected_row" defined?

                    Standard TableView process, see doc.
                    For me, it works, even by selecting another row than 1st one.
                    Sure, you did copy exactly?
                    It is like you did type:

                        return tbl.data_source.items[tbl.selected_row[0]]
                    

                    selected_row[0] is the section, here 0 and items[0] is Baldacci

                    1 Reply Last reply Reply Quote 0
                    • frankL
                      frankL last edited by

                      I did have it as return tbl.data_source.items[tbl.selected_row[1]] but I changed it to return tbl.data_source.items[tbl.selected_row[0]] and it still just returns the first list item ''Baldacci,David'. This is baffling.

                      cvp 2 Replies Last reply Reply Quote 0
                      • cvp
                        cvp @frankL last edited by cvp

                        @frankL said

                        I changed it to return tbl.data_source.items[tbl.selected_row[0]]

                        Please, don't do that, let [1] and let us try to find why you return always the 1st element

                        Please post your full code, perhaps an indentation error in what you modified

                        But one more time, you recreate a new TableView at each tap on the author button

                        1 Reply Last reply Reply Quote 0
                        • cvp
                          cvp @frankL last edited by

                          @frankL please try this one, shorter, without recreating each time thé TableView

                          import ui
                          #
                          class MyTableViewDelegate (object):
                            def tableview_did_select(self, tableview, section, row):
                              author_result.text = tbl.data_source.items[row]
                              tableview.close()
                          
                          w, h = ui.get_screen_size()
                          view = ui.View(name="Frank's Library", bg_color='lightblue', frame=(0, 0, w, h))
                          
                          author_unique = ['Baldacci,David', 'Barr,Nevada', 'Bartol,Amy', 'Bernt,Eric', 'Brandt,Kylie', 'Bruni,Riccardo', 'Bryndza,Robert', 'Burke,James Lee', 'Burton,Mary', 'Butcher,Jim', 'Carlson,Tucker', 'Carrol,Sean', 'Case,Andrew', 'Chernov,Ron', 'Clayton,MegWaite', 'Coben,Harlan', 'Cole,Bobby', 'Connelly,Michael', 'Cornwell,Bernard', 'Cornwell,Patricia', 'Cowie,Amber', 'Crombie,Deborah', 'Crosby,Ellen', 'Cross,Katie', 'Cussler,Clive', 'Delaney,Matthew B.J.', 'Dilts,Tyler', 'Dorsey,Tim']
                          tbl = ui.TableView()
                          tbl.name='Select an Author'
                          tbl.frame = (0, 0, 400, 300)
                          tbl.data_source = ui.ListDataSource(author_unique)
                          tbl.delegate = MyTableViewDelegate()
                           
                          def select_author(sender):
                              tbl.present(style='sheet')
                              tbl.wait_modal()
                              return
                           
                          author_button = ui.Button(title='Author', frame=(10,5,350,100), border_color='black', border_width=2, background_color='#EAECEE', action=select_author, font=('Arial Rounded MT Bold',18))
                          author_button.width=70
                          author_button.height=40
                          view.add_subview(author_button)
                          #
                          author_entry=''
                          author_result = ui.TextView(name='author',frame=(100,5,250,40), border_color='black', border_width=3, text=author_entry, font=('Arial Rounded MT Bold',16))
                          view.add_subview(author_result)
                           
                          nav_view = ui.NavigationView(view)
                          nav_view.present('sheet')
                          
                          JonB 1 Reply Last reply Reply Quote 0
                          • JonB
                            JonB @cvp last edited by

                            @cvp inside your delegate it should be tableview, not tbl.

                            cvp 1 Reply Last reply Reply Quote 0
                            • cvp
                              cvp @JonB last edited by cvp

                              @JonB yes, you're right, but tbl is also known, I guess, because it works

                              1 Reply Last reply Reply Quote 0
                              • JonB
                                JonB last edited by JonB

                                If this code was indeed working before, that suggests something changed with wait_modal. As a check:

                                import ui
                                #
                                def show_list_dialog(items=None, *args, **kwargs):
                                    items = items or []
                                    tbl = ui.TableView(**kwargs)
                                    tbl.data_source = ui.ListDataSource(items)
                                    my_sel = {'value': None}
                                    class MyTableViewDelegate (object):
                                        def tableview_did_select(self, tableview, section, row):
                                            print('items:', tableview.data_source.items)
                                            print('section, row:', section, row)
                                            my_sel['value'] = tableview.data_source.items[row]
                                            tableview.close()
                                            print('in delegate: my_sel',my_sel['value'])
                                    tbl.delegate = MyTableViewDelegate()
                                    tbl.present(style='sheet')
                                    tbl.wait_modal()
                                    print('after wait: ', my_sel['value'])
                                    return my_sel['value']
                                #
                                w, h = ui.get_screen_size()
                                view = ui.View(name="Frank's Library", bg_color='lightblue', frame=(0, 0, w, h))
                                 
                                def select_author(sender):
                                    author_unique = ['Baldacci,David', 'Barr,Nevada', 'Bartol,Amy', 'Bernt,Eric', 'Brandt,Kylie', 'Bruni,Riccardo', 'Bryndza,Robert', 'Burke,James Lee', 'Burton,Mary', 'Butcher,Jim', 'Carlson,Tucker', 'Carrol,Sean', 'Case,Andrew', 'Chernov,Ron', 'Clayton,MegWaite', 'Coben,Harlan', 'Cole,Bobby', 'Connelly,Michael', 'Cornwell,Bernard', 'Cornwell,Patricia', 'Cowie,Amber', 'Crombie,Deborah', 'Crosby,Ellen', 'Cross,Katie', 'Cussler,Clive', 'Delaney,Matthew B.J.', 'Dilts,Tyler', 'Dorsey,Tim']
                                    f = (0, 0, 400, 300)
                                    selected_author = show_list_dialog(author_unique, frame=f, name='Select an Author')
                                    print('list dialog returned:', selected_author)
                                    author_result.text = str(selected_author)
                                    return
                                 
                                author_button = ui.Button(title='Author', frame=(10,5,350,100), border_color='black', border_width=2, background_color='#EAECEE', action=select_author, font=('Arial Rounded MT Bold',18))
                                author_button.width=70
                                author_button.height=40
                                view.add_subview(author_button)
                                #
                                global author_result
                                author_entry=''
                                author_result = ui.TextView(name='author',frame=(100,5,250,40), border_color='black', border_width=3, text=author_entry, font=('Arial Rounded MT Bold',16))
                                view.add_subview(author_result)
                                 
                                nav_view = ui.NavigationView(view)
                                nav_view.present('sheet')
                                
                                cvp JonB 3 Replies Last reply Reply Quote 0
                                • cvp
                                  cvp @JonB last edited by

                                  @JonB I hope he will check but I'm not sure that I did not change some code. Anyway, this code recreates the TableView each time your tap the author button...

                                  1 Reply Last reply Reply Quote 0
                                  • cvp
                                    cvp @JonB last edited by

                                    @JonB don't forget that line tbl.delegate = MyTableViewDelegate() was initially in the delegate, it can't work.

                                    1 Reply Last reply Reply Quote 0
                                    • frankL
                                      frankL last edited by

                                      I copied the above code and ran it as is. It did not return the selected author. What was printed in the console was:

                                      after wait: None
                                      list dialog returned: None
                                      items: ['Baldacci,David', 'Barr,Nevada', 'Bartol,Amy', 'Bernt,Eric', 'Brandt,Kylie', 'Bruni,Riccardo', 'Bryndza,Robert', 'Burke,James Lee', 'Burton,Mary', 'Butcher,Jim', 'Carlson,Tucker', 'Carrol,Sean', 'Case,Andrew', 'Chernov,Ron', 'Clayton,MegWaite', 'Coben,Harlan', 'Cole,Bobby', 'Connelly,Michael', 'Cornwell,Bernard', 'Cornwell,Patricia', 'Cowie,Amber', 'Crombie,Deborah', 'Crosby,Ellen', 'Cross,Katie', 'Cussler,Clive', 'Delaney,Matthew B.J.', 'Dilts,Tyler', 'Dorsey,Tim'] section, row: 0 4
                                      in delegate: my_sel Brandt,Kylie

                                      1 Reply Last reply Reply Quote 0
                                      • JonB
                                        JonB last edited by

                                        Ok, so the modal_wait is broken -- the after wait prints before anything else!

                                        Possibly we need to add a time.sleep before the modaL wait to ensure the view is presented. Or we need some UI.in_background or on_main_view somewhere...

                                        Have you tried the dialogs module? This is exactly it's purpose, and you don't seem to be doing anything that requires anything custom.

                                        1 Reply Last reply Reply Quote 0
                                        • bosco
                                          bosco last edited by bosco

                                          This appears to be a problem only when running iOS 15 on an iPhone 12. The @JonB example runs fine on my iPad mini, but does not work on my iPhone 12 mini.

                                          I have run into the same problem with some rubicon-objc code i developed.

                                          # works on iPad, but fails on iPhone 12 mini
                                          while self.ispresented:
                                              waituntil = NSDate.alloc().initWithTimeIntervalSinceNow(.2)
                                              runLoop = NSRunLoop.currentRunLoop
                                              runLoop.runUntilDate(waituntil)
                                          

                                          Here are some links to others with a similar problem.
                                          https://stackoverflow.com/questions/69312354/failed-to-block-main-thread-with-runloop-on-ios15-with-device-iphone12
                                          https://developer.apple.com/forums/thread/691941

                                          I have other Pythonista scripts that use modal_wait() that do seem to work, so maybe there is a work around

                                          1 Reply Last reply Reply Quote 0
                                          • JonB
                                            JonB last edited by

                                            I wonder if this is a navigation view problem. Try presenting view without creating a nav view.

                                            1 Reply Last reply Reply Quote 0
                                            • First post
                                              Last post
                                            Powered by NodeBB Forums | Contributors