91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

代碼拾遺錄--輕松獲取Cell里的button的indexPath

發布時間:2020-10-19 06:21:17 來源:網絡 閱讀:361 作者:卓行天下 欄目:開發技術

代碼拾遺錄--輕松獲取Cell里的button的indexPath

 - (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier from:(UITableView*)table
{
    self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
    if (self) {
        self.tableView = table;
        [self createUI];
    }
    return self;
}

- (void)createUI
{
    self.backgroundColor = [UIColor purpleColor];
    self.textLabel.font = [UIFont systemFontOfSize:50.0f];
    
    UIButton * button = [UIButton buttonWithType:UIButtonTypeCustom];
    button.frame = (CGRect){0,0,60,40};
    button.backgroundColor = [UIColor whiteColor];
    [button addTarget:self action:@selector(clickAction:event:) forControlEvents:UIControlEventTouchUpInside];
    self.accessoryView = button;
}

- (void)clickAction:(UIButton*)sender  event:(id)event
{
    NSSet * touches = [event allTouches];
    UITouch * touch = [touches anyObject];
    CGPoint currentTouchPosition = [touch locationInView:self.tableView];
    
    NSIndexPath * indexPath = [self.tableView indexPathForRowAtPoint:currentTouchPosition];
    if (indexPath != nil) {
        NSLog(@"%@",indexPath);
    }
}

關鍵代碼 要將table傳入cell里面 還有一句   indexPathForRowAtPoint:


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

会泽县| 福安市| 易门县| 长汀县| 日照市| 全州县| 丹江口市| 青岛市| 宿州市| 乌审旗| 泽普县| 湄潭县| 泗阳县| 鄢陵县| 磴口县| 万山特区| 巴林左旗| 聂拉木县| 上蔡县| 旅游| 华阴市| 保德县| 永安市| 乐平市| 开鲁县| 柯坪县| 永年县| 阿克陶县| 昌黎县| 华坪县| 宜宾市| 黑水县| 彭阳县| 渝中区| 晋城| 新沂市| 江陵县| 崇阳县| 大余县| 乐昌市| 芜湖县|