Jak sprawić, by UITableViewCell wyglądało na wyłączone?


Odpowiedzi:


164

Możesz po prostu wyłączyć pola tekstowe komórki, aby je wyszarzać:

Swift 4.x

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

17
Albo trochę krócej:cell.userInteractionEnabled = cell.textLabel.enabled = cell.detailTextLabel.enabled = NO;
Thomas Kekeisen

51
krótszy, ale brzydszy
sport

25

Rozszerzenie Swift, które działa dobrze w kontekście, którego używam; Twój przebieg może się różnić.

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
        }
    }
}

Swift 3:

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

Teraz to tylko kwestia telefonu myCell.enable(truthValue).


22

Dzięki @Ajay Sharma dowiedziałem się, jak sprawić, by UITableViewCell wyglądał na niepełnosprawnego:

// 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];

A następnie, aby faktycznie wyłączyć komórkę:

cell.userInteractionEnabled = NO;

Tak, oczywiście, możesz zrobić to samo w ten sposób, ustawiając alfa :)
Ajay Sharma

18

Spróbuj użyć małej sztuczki:

Po prostu ustaw alfa komórki. Ustaw jakiś warunek jako własne wymagania i ustaw alfa.

cell.alpha=0.2;

Jeśli to nie zadziała, tak jak lubisz, użyj drugiej sztuczki,

Po prostu zrób zdjęcie rozmiaru komórki z szarym tłem z przezroczystym tłem, po prostu dodaj ten obraz na obrazie nad zawartością komórki. Lubię to:

// 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;
}

Wprawdzie nie jestem pewien sposobu, ale to z pewnością spełni Twoje wymagania, co da użytkownikowi wrażenie, że komórka jest wyłączona. Po prostu spróbuj skorzystać z tego rozwiązania i mam nadzieję, że rozwiąże Twój problem.


5
cell.alpha = 0,2 - u mnie nie działa. cell.ContentView.Alpha = 0.2 pracował dla mnie
Michał Dobrodenka

To samo, co ustawienie cell.alpha - nie działa, ustawienie cell.ContentView.alpha działa
infinity_coding7

4

Świetne rozszerzenie od Kevina Owensa, oto moja poprawka do pracy z 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
        }
    }
}

Swift 3:

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

Użyj .isUserInteractionEnabled w Swift 3.0
Matias Masso

4

Swift 4.X

Niezłe rozszerzenie od Kevina Owensa, poprawiam zachowanie komórki.

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

Jak to nazwać: -

cell.enable(on: switch.isOn)


2

Stworzyłem następujące rozszerzenie, aby włączyć / wyłączyć UITableViewCell, jest bardzo wygodne w użyciu. Utwórz rozszerzenie UITableViewCell z „UITableViewCell + Ext.h” zawierającym następujące elementy.

@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” zawiera następujące elementy.

@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

Jak wyłączyć komórkę:

[cell enableCell:NO withText:NO];

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

Jak włączyć komórkę:

[cell enableCell:YES withText:NO];

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

Mam nadzieję, że ci to pomoże.


Korzystając z naszej strony potwierdzasz, że przeczytałeś(-aś) i rozumiesz nasze zasady używania plików cookie i zasady ochrony prywatności.
Licensed under cc by-sa 3.0 with attribution required.