Add icons to attachment action sheet.

// FREEBIE
pull/1/head
Matthew Chen 8 years ago
parent 718109bca7
commit 866493c8ed

@ -0,0 +1,23 @@
{
"images" : [
{
"idiom" : "universal",
"filename" : "actionsheet_camera_black@1x.png",
"scale" : "1x"
},
{
"idiom" : "universal",
"filename" : "actionsheet_camera_black@2x.png",
"scale" : "2x"
},
{
"idiom" : "universal",
"filename" : "actionsheet_camera_black@3x.png",
"scale" : "3x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

@ -0,0 +1,23 @@
{
"images" : [
{
"idiom" : "universal",
"filename" : "actionsheet_camera_roll_black@1x.png",
"scale" : "1x"
},
{
"idiom" : "universal",
"filename" : "actionsheet_camera_roll_black@2x.png",
"scale" : "2x"
},
{
"idiom" : "universal",
"filename" : "actionsheet_camera_roll_black@3x.png",
"scale" : "3x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

@ -0,0 +1,23 @@
{
"images" : [
{
"idiom" : "universal",
"filename" : "actionsheet_document_black@1x.png",
"scale" : "1x"
},
{
"idiom" : "universal",
"filename" : "actionsheet_document_black@2x.png",
"scale" : "2x"
},
{
"idiom" : "universal",
"filename" : "actionsheet_document_black@3x.png",
"scale" : "3x"
}
],
"info" : {
"version" : 1,
"author" : "xcode"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

@ -2763,6 +2763,9 @@ typedef enum : NSUInteger {
handler:^(UIAlertAction * _Nonnull action) {
[self takePictureOrVideo];
}];
UIImage *takeMediaImage = [UIImage imageNamed:@"actionsheet_camera_black"];
OWSAssert(takeMediaImage);
[takeMediaAction setValue:takeMediaImage forKey:@"image"];
[actionSheetController addAction:takeMediaAction];
UIAlertAction *chooseMediaAction = [UIAlertAction actionWithTitle:NSLocalizedString(@"MEDIA_FROM_LIBRARY_BUTTON", @"media picker option to choose from library")
@ -2770,6 +2773,9 @@ typedef enum : NSUInteger {
handler:^(UIAlertAction * _Nonnull action) {
[self chooseFromLibrary];
}];
UIImage *chooseMediaImage = [UIImage imageNamed:@"actionsheet_camera_roll_black"];
OWSAssert(chooseMediaImage);
[chooseMediaAction setValue:chooseMediaImage forKey:@"image"];
[actionSheetController addAction:chooseMediaAction];
UIAlertAction *chooseDocumentAction =
@ -2779,6 +2785,9 @@ typedef enum : NSUInteger {
handler:^(UIAlertAction *_Nonnull action) {
[self showAttachmentDocumentPicker];
}];
UIImage *chooseDocumentImage = [UIImage imageNamed:@"actionsheet_document_black"];
OWSAssert(chooseDocumentImage);
[chooseDocumentAction setValue:chooseDocumentImage forKey:@"image"];
[actionSheetController addAction:chooseDocumentAction];
[self presentViewController:actionSheetController animated:true completion:nil];

Loading…
Cancel
Save