首页
学习
活动
专区
圈层
工具
发布
    • 综合排序
    • 最热优先
    • 最新优先
    时间不限
  • 来自专栏陈满iOS

    iOS·长按保存图片到相册:系统原生UIActionSheet与UIAlertView,UIAlertController等方案

    及需要遵守的代理 @interface CustomerImageViewController ()<UICollectionViewDataSource,UICollectionViewDelegate,UIActionSheetDelegate UIImageView *imgView = (UIImageView*)[gesture view]; _tempImage = imgView.image; } } 实现UIActionSheetDelegate 代理方法 #pragma - mark - UIActionSheetDelegate - (void)actionSheet:(UIActionSheet*)actionSheet didDismissWithButtonIndex

    2.2K10发布于 2018-09-10
  • 来自专栏TechBox

    UIAlertView、UIActionSheet、UIAlertController使用

    = UIAlertViewStyleDefault; [alert show]; } // 需要遵守协议UIAlertViewDelegate来响应点击事件 #pragma mark - UIActionSheetDelegate nil]; alert.alertViewStyle = UIAlertViewStylePlainTextInput; [alert show]; } #pragma mark - UIActionSheetDelegate nil]; alert.alertViewStyle = UIAlertViewStyleSecureTextInput; [alert show]; } #pragma mark - UIActionSheetDelegate destructiveButtonTitle:nil otherButtonTitles:@"查看",@"评论", nil]; [sheet showInView:self.view]; } #pragma mark - UIActionSheetDelegate

    6.6K30发布于 2018-06-05
  • 来自专栏大师级码师

    网络状态检测Reachability

    #import "Reachability.h" @interface JRViewController ()<UIActionSheetDelegate> @property(nonatomic,strong

    93900发布于 2021-10-31
  • 来自专栏一“技”之长

    IOS中UIActionSheet使用详解 原

    IOS中UIActionSheet使用方法详解 一、初始化方法 - (instancetype)initWithTitle:(NSString *)title delegate:(id<UIActionSheetDelegate

    74220发布于 2018-08-15
  • 来自专栏全栈程序员必看

    swift2.0 UIImagePickerController 拍照 相册 录像

    class ViewController: UIViewController ,UIImagePickerControllerDelegate,UINavigationControllerDelegate,UIActionSheetDelegate

    62520编辑于 2022-07-05
  • 来自专栏iOS进阶开发

    iOS开发UI篇--一个支持图文混排的ActionSheet

    IOS官方提供的以下方式对UIActionView进行实例化: - (instancetype)initWithTitle:(NSString *)title delegate:(id<UIActionSheetDelegate

    97550发布于 2018-11-26
  • 来自专栏韩曙亮的移动开发专栏

    【IOS 开发】基本 UI 控件详解 (UISegmentedControl | UIImageView | UIProgressView | UISlider | UIAlertView )

    . // #import <UIKit/UIKit.h> @interface OCViewController : UIViewController <UIActionSheetDelegate>

    4.7K40编辑于 2023-03-27
领券