mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-21 17:12:45 +02:00
make use of Obj-C's modern syntax for literals and subscripting
This commit is contained in:
@@ -727,7 +727,7 @@
|
||||
|
||||
if (indexPath.row < actionsArray.count)
|
||||
{
|
||||
NSNumber *actionNumber = [actionsArray objectAtIndex:indexPath.row];
|
||||
NSNumber *actionNumber = actionsArray[indexPath.row];
|
||||
|
||||
NSString *title = [self actionButtonTitle:actionNumber.unsignedIntegerValue];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user