菜鸟教程小白 发表于 2022-12-12 15:06:06

ios - 在 WKInterfaceTable 的选择行上将数据传输到 Iphone


                                            <p><p>我正在为 iOS 应用程序制作 watch 应用程序。我从 watch main InterfaceController 中的父应用程序获取数据并将其传递给其他 InterfaceController 以创建表。这里配置表的代码:</p>

<pre><code>- (void)configureTableWithData:(NSArray*)dataObjects {

    withRowType:@&#34;rowType&#34;];
    for (NSInteger i = 0; i &lt; self.table.numberOfRows; i++) {

      RowType* row = ;
      NSObject* object = ;

      ];
      ];
    }
}
</code></pre>

<p>当我选择行时,我想将数据传输回第一页。需要更改第一页上的一些标签。我正在将数据传输到父应用程序并将其返回到主 InterfaceController</p>

<pre><code>- (void)table:(WKInterfaceTable *)table didSelectRowAtIndex:(NSInteger)rowIndex {

   //Here must be dictionary, where I put row

   [WKInterfaceController openParentApplication:data reply:^(NSDictionary *replyInfo, NSError *error) {
          NSLog(@&#34;data transfer&#34;);
   }];

   ;
}
</code></pre>

<p>如何获取行数据? (row.titleName, row.value) 可能这是个愚蠢的问题,我仍然只是一个初学者,但我可以得到它。我试图在控制台 row.titleName 和 row.bottomValue 上打印,当然我什么也没得到。 (对不起我的英语,不是我的母语)我错过了什么?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我对 tableview 中的 watch 套件有同样的问题。现在我们只设置单元格标签中的文本不返回所以你必须这样做</p>

<pre><code>- (void)table:(WKInterfaceTable *)table didSelectRowAtIndex:(NSInteger)rowIndex {

   //Here must be dictionary, where I put row
   NSDictionary* object = ;
   NSLog(&#34;used object as you want&#34;);

   [WKInterfaceController openParentApplication:object reply:^(NSDictionary *replyInfo, NSError *error) {
          NSLog(@&#34;data transfer&#34;);
   }];

   ;
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 在 WKInterfaceTable 的选择行上将数据传输到 Iphone,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/29714489/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/29714489/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 在 WKInterfaceTable 的选择行上将数据传输到 Iphone