File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -273,7 +273,7 @@ - (void)tableView:(UITableView*)tableView commitEditingStyle:(UITableViewCellEdi
273273 // Are there still editable entries?
274274 if (AppDelegate.instance .arrayServerList .count == 0 ) {
275275 editTableButton.selected = editTableButton.enabled = NO ;
276- [Utilities alphaView: noFoundLabel AnimDuration: 0.2 Alpha: 1.0 ];
276+ [noFoundLabel animateAlpha: 1.0 duration: 0.2 ];
277277 }
278278 }
279279}
Original file line number Diff line number Diff line change @@ -2347,7 +2347,7 @@ - (void)tableView:(UITableView*)tableView commitEditingStyle:(UITableViewCellEdi
23472347 // Are there still editable entries?
23482348 if (playlistData.count == 0 ) {
23492349 editTableButton.selected = editTableButton.enabled = NO ;
2350- [Utilities alphaView: noFoundLabel AnimDuration: 0.2 Alpha: 1.0 ];
2350+ [noFoundLabel animateAlpha: 1.0 duration: 0.2 ];
23512351 }
23522352 }];
23532353 }
Original file line number Diff line number Diff line change @@ -197,7 +197,7 @@ - (void)deleteCustomButton:(NSUInteger)idx {
197197 if (arrayButtons.buttons .count == 0 ) {
198198 editTableButton.enabled = NO ;
199199 editTableButton.selected = NO ;
200- [Utilities alphaView: noFoundLabel AnimDuration: 0.2 Alpha: 1.0 ];
200+ [noFoundLabel animateAlpha: 1.0 duration: 0.2 ];
201201 }
202202}
203203
@@ -206,11 +206,11 @@ - (void)loadCustomButtons {
206206 customButton *arrayButtons = [customButton new ];
207207 if (arrayButtons.buttons .count == 0 ) {
208208 editTableButton.enabled = NO ;
209- [Utilities alphaView: noFoundLabel AnimDuration: 0.2 Alpha: 1.0 ];
209+ [noFoundLabel animateAlpha: 1.0 duration: 0.2 ];
210210 }
211211 else {
212212 editTableButton.enabled = YES ;
213- [Utilities alphaView: noFoundLabel AnimDuration :0.2 Alpha :0.0 ];
213+ [noFoundLabel animateAlpha :0.0 duration :0.2 ];
214214 }
215215
216216 // Build table with custom buttons
You can’t perform that action at this time.
0 commit comments