iOS8 在ipad 上面显示UIAlertController

本文提供了一个iOS应用中使用UIAlertController创建弹出菜单的具体实例。通过这个示例,开发者可以了解到如何配置UIAlertController的样式、设置标题和消息,以及如何添加多个按钮并为每个按钮设置点击事件。


//
//  ViewController.m
//  AlertControllerTest
//
//  Created by mac on 15/1/19.
//  Copyright (c) 2015年 ouyang. All rights reserved.
//

#import "ViewController.h"

@interface ViewController ()<UINavigationControllerDelegate,UIImagePickerControllerDelegate>
@property(nonatomic,retain)ViewController *myVC;
@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    _myVC = self;
}

- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
}
- (IBAction)actionSheetbtnClick:(UIButton *)sender {
    
    NSString *title =  NSLocalizedString(@"获取身份证正面照", nil);
    NSString *message = NSLocalizedString(@"提示", nil);
    NSString *cancelButton = NSLocalizedString(@"取消", nil);
    NSString *otherButton = NSLocalizedString(@"相册", nil);
     NSString *otherButton1 = NSLocalizedString(@"拍照", nil);
    
    //初始化一个弹框
    UIAlertController *alertController = [UIAlertController alertControllerWithTitle:title message:message preferredStyle:UIAlertControllerStyleActionSheet];// UIAlertControllerStyleAlert
   
    //添加一个事件,对应一个按钮
    UIAlertAction *otherAction = [UIAlertAction actionWithTitle:otherButton style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
        //点击按钮的回调方法
        if ([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypePhotoLibrary]) {
            UIImagePickerController *picker = [[UIImagePickerController alloc]init];
            picker.delegate = _myVC;
            picker.allowsEditing = YES;
            picker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
            [_myVC presentViewController:picker animated:YES completion:nil];
        }
    }];
   
    UIAlertAction *otherAction1 = [UIAlertAction actionWithTitle:otherButton1 style:UIAlertActionStyleDefault handler:^(UIAlertAction *action) {
          NSLog(@"确定");
    }];
    UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:cancelButton style:UIAlertActionStyleDefault handler:nil];

    //给弹框绑定方法
    [alertController addAction:otherAction];
    [alertController addAction:otherAction1];
    [alertController addAction:cancelAction];
    //在ipad上的特殊处理, 以点击触发的地方 为锚点。弹出ActionSheet,否则会出现崩溃现象【ipad iOS8】
    /**
     *  在常规宽度的设备上,上拉菜单是以弹出框的形式展现。弹出框必须要有一个能够作为源视图或者栏按钮项目的描点(anchor point)。由于在本例中我们是使用了常规的UIButton来触发上拉菜单的,因此我们就将其作为描点。
     */
    UIPopoverPresentationController *popover = alertController.popoverPresentationController;
    if (popover) {
        popover.sourceView = sender;
        popover.sourceRect = sender.bounds;
        popover.permittedArrowDirections=UIPopoverArrowDirectionAny;
    }
    //显示弹框
    [self presentViewController:alertController animated:YES completion:nil];   
}
@end


C语言-光伏MPPT算法:电导增量法扰动观察法+自动全局搜索Plecs最大功率跟踪算法仿真内容概要:本文档主要介绍了一种基于C语言实现的光伏最大功率点跟踪(MPPT)算法,结合电导增量法与扰动观察法,并引入自动全局搜索策略,利用Plecs仿真工具对算法进行建模与仿真验证。文档重点阐述了两种经典MPPT算法的原理、优缺点及其在不同光照和温度条件下的动态响应特性,同时提出一种改进的复合控制策略以提升系统在复杂环境下的跟踪精度与稳定性。通过仿真结果对比分析,验证了所提方法在快速性和准确性方面的优势,适用于光伏发电系统的高效能量转换控制。; 适合人群:具备一定C语言编程基础和电力电子知识背景,从事光伏系统开发、嵌入式控制或新能源技术研发的工程师及高校研究人员;工作年限1-3年的初级至中级研发人员尤为适合。; 使用场景及目标:①掌握电导增量法与扰动观察法在实际光伏系统中的实现机制与切换逻辑;②学习如何在Plecs中搭建MPPT控制系统仿真模型;③实现自动全局搜索以避免传统算法陷入局部峰值问题,提升复杂工况下的最大功率追踪效率;④为光伏逆变器或太阳能充电控制器的算法开发提供技术参考与实现范例。; 阅读建议:建议读者结合文中提供的C语言算法逻辑与Plecs仿真模型同步学习,重点关注算法判断条件、步长调节策略及仿真参数设置。在理解基本原理的基础上,可通过修改光照强度、温度变化曲线等外部扰动因素,进一步测试算法鲁棒性,并尝试将其移植到实际嵌入式平台进行实验验证。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值