Increase size of PC icons on tvOS

This commit is contained in:
Cameron Gutman
2019-08-30 19:37:16 -07:00
parent 6d94897c21
commit a6cef32c9a
6 changed files with 11 additions and 5 deletions

View File

@@ -2,11 +2,11 @@
"images" : [
{
"idiom" : "universal",
"filename" : "add.pdf",
"scale" : "1x"
},
{
"idiom" : "universal",
"filename" : "add.pdf",
"scale" : "2x"
},
{

View File

@@ -2,11 +2,11 @@
"images" : [
{
"idiom" : "universal",
"filename" : "error.pdf",
"scale" : "1x"
},
{
"idiom" : "universal",
"filename" : "error.pdf",
"scale" : "2x"
},
{

View File

@@ -2,11 +2,11 @@
"images" : [
{
"idiom" : "universal",
"filename" : "lock.pdf",
"scale" : "1x"
},
{
"idiom" : "universal",
"filename" : "lock.pdf",
"scale" : "2x"
},
{

View File

@@ -2,11 +2,11 @@
"images" : [
{
"idiom" : "universal",
"filename" : "updating.pdf",
"scale" : "1x"
},
{
"idiom" : "universal",
"filename" : "updating.pdf",
"scale" : "2x"
},
{

View File

@@ -2,11 +2,11 @@
"images" : [
{
"idiom" : "universal",
"filename" : "computer.pdf",
"scale" : "1x"
},
{
"idiom" : "universal",
"filename" : "computer.pdf",
"scale" : "2x"
},
{

View File

@@ -31,6 +31,12 @@ static const int LABEL_DY = 20;
[_hostButton setBackgroundImage:[UIImage imageNamed:@"Computer"] forState:UIControlStateNormal];
[_hostButton sizeToFit];
#if TARGET_OS_TV
_hostButton.frame = CGRectMake(0, 0, 400, 400);
#else
_hostButton.frame = CGRectMake(0, 0, 100, 100);
#endif
_hostButton.layer.shadowColor = [[UIColor blackColor] CGColor];
_hostButton.layer.shadowOffset = CGSizeMake(5,8);
_hostButton.layer.shadowOpacity = 0.3;