UIViewController-Modal 0.0.2

UIViewController-Modal 0.0.2

测试已测试
语言语言 Obj-CObjective C
许可证 MIT
发布上次发布2014年12月

未声明 维护。



  • Bruno Tortato Furtado

确定 UIViewController 是否以模态方式呈现。

Build Status

要求

UIViewController-Modal 支持iOS 6.0以上版本,与ARC项目兼容。它依赖于以下 Apple 框架,这些框架通常已包含在大多数 Xcode 模板中:

  • Foundation.framework
  • UIKit.framework

为了构建 UIViewController-Modal,您需要 LLVM 3.0 或更高版本。

将 UIViewController-Modal 添加到您的项目

源文件

您也可以直接将源文件添加到您的项目中。

  1. 下载最新代码版本 https://github.com/NZN/UIViewController-Modal/archive/master.zip,或将存储库作为 git 子模块添加到您的 git 跟踪项目中。
  2. 在 Xcode 中打开您的项目,然后将位于 UIViewController-Modal 目录下的所有文件拖放到项目(使用“Product Navigator 视图”)。如果您在项目外提取了代码存档,当被提示时,请确保选择复制项目。

用法

  • 导入 UIViewController+Modal.h 或将其添加到您的项目前缀头 *-Prefix.pch 中。
#import "UIViewController+Modal.h"
...
@implementation UIViewController

- (void)viewDidAppear:(BOOL)animated
{
    [super viewDidAppear:animated];

    if ([self isModal]) {
        // modal
    } else {
        // not modal
    }
}

@end

许可证

该代码根据MIT 许可证的条款和条件进行分发。

变更日志

每个 UIViewController-Modal 释放的简要总结可以在 wiki 上找到。