0

ここに画像の説明を入力

私のコードは次のようなものです:

UIImage *imk= [UIImage imageWithData:imageData];



    UIAlertController * alert=   [UIAlertController
                                  alertControllerWithTitle:@"Success"
                                  message:@"Posted Successfully."
                                  preferredStyle:UIAlertControllerStyleAlert];

    UIAlertAction *Action=[[UIAlertAction alloc]init];
    [Action setValue:imk forKey:@"image"];
    [alert addAction:Action];

            [self presentViewController:alert animated:YES completion:nil];
4

1 に答える 1