我想實現刷卡上表視圖刪除單元格象是在AnyDo應用。任何幫助?
我的代碼:
我使用的是手勢識別
- (UISwipeGestureRecognizer *)swipeRightRecognizer
{
if (!_swipeRightRecognizer)
{
_swipeRightRecognizer = [[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(handleSwipeFrom:)];
_swipeRightRecognizer.direction = UISwipeGestureRecognizerDirectionRight;
}
return _swipeRightRecognizer;
}
添加手勢細胞:
[cell.contentView addGestureRecognizer:self.leftGestureRecognizer];
處理刷卡。
- (void)handleSwipeFrom:(UISwipeGestureRecognizer *)recognizer indexPath: (NSIndexPath *)index
{
if (recognizer.direction == UISwipeGestureRecognizerDirectionLeft)
{
//Table View deletion code. + Line to be drawn on cell, move that cell to the bottom of the table with animaiton.
}
}
這不是這個網站的用途。此網站用於*特定的,可回答的問題。不是定製的教程。 – borrrden 2013-02-22 10:48:05
我問如何實現這一點,我不需要一個教程。任何示例代碼都是我需要的。 – satheeshwaran 2013-02-22 10:52:33
示例代碼是相同的東西。問題是你所說的是「幫助」。你還沒有顯示出你自己解決問題的任何嘗試。 – borrrden 2013-02-22 10:54:30