Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
フォームにクイックダイアログを使用していますが、スワイプして削除しようとしていますが、どうすればよいかわかりません。誰でも私を助けることができますか?
QSection の代わりに QSortingSection を使用し、canDeleteRows を YES に設定することにより、スワイプしてセクション内の要素を削除できます。
QSortingSection *foosection = [[QSortingSection alloc] init]; foosection.canDeleteRows = YES;
通常どおり要素の追加に進むと、各要素をスワイプして「削除」ボタンを表示できるはずです。削除ボタンを押すと、アイテムはセクションから自動的に消えます。