I am creating a tableView with custom cells, with each cell being created with the following code:
UITableViewCell * cell = [tableView dequeueReusableCellWithIdentifier:kEditSymbolCellId];
I have returntableView.isEditing
; set.
and i have the minus button visible from the get go. With the editing style set toUITableViewCellEditingStyleDelete
somewhere
(if (editingStyle == UITableViewCellEditingStyleDelete) { passes
).
Where would i have to change the code to add the accessibility label.
I am creating the cell of a custom class- the .h has only this in it:
@interface WidgetEditCell : UITableViewCell
@property (retain, nonatomic) IBOutlet UILabel *symbolLabel;
@property (retain, nonatomic) IBOutlet UILabel *subtitleLabel;
With ainitWithStyle
and asetSelected
in the .m
nothing that changes the cursed minus image.
someone please help.