美文网首页
添加图片功能的拓展

添加图片功能的拓展

作者: 单腿行走的大象 | 来源:发表于2015-12-29 14:21 被阅读52次

    UIAlertController* alertController = [UIAlertControlleralertControllerWithTitle:@"选择"message:nilpreferredStyle:UIAlertControllerStyleActionSheet];

    UIAlertAction* actionOne = [UIAlertActionactionWithTitle:@"拍照"style:UIAlertActionStyleDefaulthandler:nil];

    UIAlertAction* actionTwo = [UIAlertActionactionWithTitle:@"从相册中选择"style:UIAlertActionStyleDefaulthandler:nil];

    UIAlertAction* actionThree = [UIAlertActionactionWithTitle:@"取消"style:UIAlertActionStyleCancelhandler:nil];

    [alertControlleraddAction:actionOne];

    [alertControlleraddAction:actionTwo];

    [alertControlleraddAction:actionThree];

    [selfpresentViewController:alertControlleranimated:YEScompletion:nil];

    相关文章

      网友评论

          本文标题:添加图片功能的拓展

          本文链接:https://www.haomeiwen.com/subject/qfhihttx.html