UITableViewCell이 비활성화 된 것처럼 보이게하려면 어떻게해야합니까?


답변:


166

셀의 텍스트 필드를 비활성화하여 회색으로 표시 할 수 있습니다.

스위프트 4.x

cell!.isUserInteractionEnabled = false
cell!.textLabel!.isEnabled = false
cell!.detailTextLabel!.isEnabled = false

17
또는 조금 더 짧게 :cell.userInteractionEnabled = cell.textLabel.enabled = cell.detailTextLabel.enabled = NO;
Thomas Kekeisen

51
짧지 만 더 험악한
스포츠

25

내가 사용하고있는 상황에서 잘 작동하는 Swift 확장. 귀하의 마일리지가 다를 수 있습니다.

스위프트 2.x

extension UITableViewCell {
    func enable(on: Bool) {
        for view in contentView.subviews as! [UIView] {
            view.userInteractionEnabled = on
            view.alpha = on ? 1 : 0.5
        }
    }
}

스위프트 3 :

extension UITableViewCell {
    func enable(on: Bool) {
        for view in contentView.subviews {
            view.isUserInteractionEnabled = on
            view.alpha = on ? 1 : 0.5
        }
    }
}

이제는 myCell.enable(truthValue).


22

@Ajay Sharma 덕분에 비활성화 된 UITableViewCell 것처럼 보이게 하는 방법을 알아 냈습니다 .

// Mac's native DigitalColor Meter reads exactly {R:143, G:143, B:143}.
cell.textLabel.alpha = 0.439216f; // (1 - alpha) * 255 = 143
aSwitch.enabled = NO; // or [(UISwitch *)cell.accessoryView setEnabled:NO];

그런 다음 실제로 셀을 비활성화하려면 :

cell.userInteractionEnabled = NO;

당연히 예, :) 알파를 설정하여도이 방법으로 동일한 기능을 수행 할 수 있습니다
아제 샤르마에게

18

작은 트릭을 사용해보십시오.

세포의 알파를 설정하십시오. 자신의 요구 사항으로 조건을 설정하고 알파를 설정하십시오.

cell.alpha=0.2;

작동하지 않으면 원하는 방식으로 두 번째 트릭을 사용하고

투명한 배경이있는 회색 배경의 셀 크기 이미지를 가져 와서 해당 이미지를 셀 콘텐츠 위에 추가하기 만하면됩니다. 이렇게 :

// Customize the appearance of table view cells.
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    static NSString *CellIdentifier = @"Cell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
    }

    // Configure the cell...


    if(indexPath.row==0)
    {
        cell.userInteractionEnabled=FALSE;

        UIImageView *img=[[UIImageView alloc]init];
        img.frame=CGRectMake(0, 0, 320, 70);
        img.image=[UIImage imageNamed:@"DisableImage.png"];
        img.backgroundColor=[UIColor clearColor];
        [cell.contentView addSubview:img];
        [img release];

    }
    else {
        //Your usual code for cell interaction.

    }
    return cell;
}

방법에 대해서는 잘 모르겠지만 이것은 확실히 귀하의 요구 사항을 충족시킬 것입니다. 이 솔루션을 사용하여 문제가 해결되기를 바랍니다.


5
cell.alpha = 0.2-나를 위해 작동하지 않습니다. cell.ContentView.Alpha = 0.2은 나를 위해 일한
마이클 Dobrodenka에게

여기에 같은 그 설정 cell.alpha -이 작동하지 않음, 작업을 cell.ContentView.alpha를 않습니다 설정
infinity_coding7

4

Kevin Owens의 훌륭한 확장, 이것이 Swift 2.x 작업에 대한 수정입니다 .

extension UITableViewCell {
    func enable(on: Bool) {
        self.userInteractionEnabled = on
        for view in contentView.subviews {
            view.userInteractionEnabled = on
            view.alpha = on ? 1 : 0.5
        }
    }
}

스위프트 3 :

extension UITableViewCell {
    func enable(on: Bool) {
        self.isUserInteractionEnabled = on
        for view in contentView.subviews {
            view.isUserInteractionEnabled = on
            view.alpha = on ? 1 : 0.5
        }
    }
}

Swift 3.0에서 .isUserInteractionEnabled 사용
Matias Masso

4

스위프트 4.X

Kevin Owens의 Nice Extension, 세포의 동작을 수정하고 있습니다.

extension UITableViewCell {
    func enable(on: Bool) {
        self.isUserInteractionEnabled = on
        for view in contentView.subviews {
            self.isUserInteractionEnabled = on
            view.alpha = on ? 1 : 0.5
        }
    }
}

이것을 부르는 방법 :-

cell.enable(on: switch.isOn)


2

UITableViewCell을 활성화 / 비활성화하는 다음 확장을 만들었으므로 사용하는 것이 매우 편리합니다. "UITableViewCell + Ext.h"로 UITableViewCell 확장을 생성합니다.

@interface UITableViewCell (Ext)

- (void)enableCell:(BOOL)enabled withText:(BOOL)text;
- (void)enableCell:(BOOL)enabled withText:(BOOL)text withDisclosureIndicator:(BOOL)disclosureIndicator;
- (void)disclosureIndicator:(BOOL)disclosureIndicator;

@end

"UITableViewCell + Ext.m"에는 다음이 포함됩니다.

@implementation UITableViewCell (Ext)

- (UITableView *)uiTableView {
    if ([[UIDevice currentDevice] systemVersionIsGreaterThanOrEqualTo:@"7.0"]) {
        return (UITableView *)self.superview.superview;
    }
    else {
        return (UITableView *)self.superview;
    }
}

- (void)enableCell:(BOOL)enabled withText:(BOOL)text {
    if (enabled) {
        self.userInteractionEnabled = YES;

        if (text) {
            self.textLabel.alpha = 1.0f;
            self.alpha = 1.0f;
            self.detailTextLabel.hidden = NO;
        }
    }
    else {
        self.userInteractionEnabled = NO;

        if (text) {
            self.textLabel.alpha = 0.5f;
            self.alpha = 0.5f;
            self.detailTextLabel.hidden = YES;
        }
    }
}

- (void)enableCell:(BOOL)enabled withText:(BOOL)text withDisclosureIndicator:(BOOL)disclosureIndicator {
    if (enabled) {
        self.userInteractionEnabled = YES;

        if (text) {
            self.textLabel.alpha = 1.0f;
            self.alpha = 1.0f;
            self.detailTextLabel.hidden = NO;
        }

        self.accessoryType = disclosureIndicator ? UITableViewCellAccessoryDisclosureIndicator : UITableViewCellAccessoryNone;
    }
    else {
        self.userInteractionEnabled = NO;

        if (text) {
            self.textLabel.alpha = 0.5f;
            self.alpha = 0.5f;
            self.detailTextLabel.hidden = YES;
        }

        self.accessoryType = UITableViewCellAccessoryNone;
    }
}

- (void)disclosureIndicator:(BOOL)disclosureIndicator {
    if (disclosureIndicator) {
        self.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
    }
    else {
        self.accessoryType = UITableViewCellAccessoryNone;
    }
}

@end

셀 비활성화 방법 :

[cell enableCell:NO withText:NO];

[cell enableCell:NO withText:YES withDisclosureIndicator:YES];

셀 활성화 방법 :

[cell enableCell:YES withText:NO];

[cell enableCell:YES withText:YES withDisclosureIndicator:YES];

도움이되기를 바랍니다.


1

신속하게

cell.isUserInteractionEnabled = false

이것은 셀의 모양에 영향을주지 않습니다.
Womble
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.