Is it possible to show an Image in UIAlertView?

后端 未结 9 456
别跟我提以往
别跟我提以往 2020-11-29 02:01

Is it possible to add image in an UIAlertView, like showing an image from the plist file?

9条回答
  •  独厮守ぢ
    2020-11-29 02:32

    Note for IOS 7 and above

    if (floor(NSFoundationVersionNumber) > NSFoundationVersionNumber_iOS_6_1) {
        [alert setValue:imageView forKey:@"accessoryView"];
    }else{
        [alert addSubview:imageView];
    }
    

提交回复
热议问题