Signed-off-by: Ivan Sein <ivan@nextcloud.com>
This commit is contained in:
Ivan Sein 2018-03-15 18:45:44 +01:00
Родитель 3994a50021
Коммит 363033fedd
3 изменённых файлов: 5 добавлений и 2 удалений

Просмотреть файл

@ -147,7 +147,9 @@
<outlet property="delegate" destination="rp8-4C-Fhc" id="IrT-7U-CrP"/>
</connections>
</tableView>
<navigationItem key="navigationItem" id="BZo-N4-rkW"/>
<navigationItem key="navigationItem" id="BZo-N4-rkW">
<barButtonItem key="backBarButtonItem" title="Settings" id="s3n-1y-1mJ"/>
</navigationItem>
</tableViewController>
<placeholder placeholderIdentifier="IBFirstResponder" id="AAu-UD-uKL" userLabel="First Responder" sceneMemberID="firstResponder"/>
</objects>

Просмотреть файл

@ -300,7 +300,7 @@ typedef enum AboutSection {
if (!cell) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:videoConfigurationCellIdentifier];
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
cell.textLabel.text = @"Video";
cell.textLabel.text = @"Video settings";
}
}
break;

Просмотреть файл

@ -27,6 +27,7 @@
- (void)viewDidLoad {
[super viewDidLoad];
self.navigationItem.title = @"Resolutions";
_videoResolutions = [[[NCSettingsController sharedInstance] videoSettingsModel] availableVideoResolutions];
}