码迷,mamicode.com
首页 >  
搜索关键字:uiviewcontroller    ( 1229个结果
BLOCK
#import <UIKit/UIKit.h> typedef void (^BLOCK)(UIColor *); @interface SecondViewController : UIViewController @property(nonatomic,copy)BLOCK backColorB
分类:其他好文   时间:2016-01-27 21:23:53    阅读次数:115
【代码笔记】短信分享
代码:ViewController.h#import //短信分享#import #import @interface ViewController : UIViewController@endViewController.m#import "ViewController.h"@interface ...
分类:其他好文   时间:2016-01-27 10:31:29    阅读次数:145
获取当前显示的ViewController
//获取当前屏幕显示的viewcontroller - (UIViewController *)getCurrentVC { UIViewController *result = nil; UIWindow * window = [[UIApplication sharedApplication] ...
分类:其他好文   时间:2016-01-25 19:16:55    阅读次数:156
iOS之浅谈纯代码控制UIViewController视图控制器跳转界面的几种方法
一、最普通的视图控制器UIViewContoller 一个普通的视图控制器一般只有模态跳转的功能(ipad我不了解除外,这里只说iPhone),这个方法是所有视图控制器对象都可以用的,而实现这种功能,有两种方法。 1、通过方法- (void)presentViewController:(UIVi.....
分类:移动开发   时间:2016-01-25 14:41:26    阅读次数:169
iOS播放视频
1.首先导入 MediaPlayerimport MediaPlayer2.播放事件class ViewController:UIViewController{var pc:MPMoviePlayerViewController!@IBAction func playVideoBtnClicked(...
分类:移动开发   时间:2016-01-23 12:47:59    阅读次数:172
【代码笔记】电影上的花絮,自动滚动
一,效果图。二,工程图。三,代码。RootViewController.h#import @interface RootViewController : UIViewController{ UIScrollView *scoreView;}@endRootViewController.m#im...
分类:其他好文   时间:2016-01-22 14:13:00    阅读次数:195
Swift 使用代理和闭包(closure)反向传值
FirstViewController的代码import UIKitclass FirstViewController: UIViewController, SecondViewControllerDelegate { @IBOutlet weak var showTextLabel: UIL...
分类:编程语言   时间:2016-01-22 02:54:02    阅读次数:182
iOS开发 自定义navigationleftItem 之后手势失效的问题
@property (nonatomic, strong) UIViewController *currentShowVC; //设置代理 self.navigationController.interactivePopGestureRecognizer.delegate =(id)se...
分类:移动开发   时间:2016-01-21 00:36:47    阅读次数:228
ios 从堆栈中杀死 移除 指定的viewcontroller
1 - (void)removeVC:(UIViewController *)urViewControllerClass 2 { 3 NSArray* tempVCA = [self.navigationController viewControllers]; 4 for(UIVi...
分类:移动开发   时间:2016-01-20 17:05:52    阅读次数:311
【代码笔记】点击cell时候的动画翻转
一,效果图。二,工程图。三,代码。RootViewController.h#import @interface RootViewController : UIViewController{ UITableView *myTableView;}@endRootViewController.m#i...
分类:其他好文   时间:2016-01-20 09:59:41    阅读次数:177
1229条   上一页 1 ... 38 39 40 41 42 ... 123 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!