此处无任何的业务处理,只是简单的页面跳转,写了至少三行有效的代码,在实际的开发中会涉及大量这样的页面转向,若都这样写会特别的麻烦,我们通过在配置类MyMvcConfig里通过重写addViewControllers来简化配置: ...
分类:
编程语言 时间:
2017-07-19 00:18:56
阅读次数:
139
用Object-C写的一个简单的计算机程序,主要学习按钮的action动作。 以下是主界面: 以下代码时界面按钮和ViewController.h连接的地方: - (IBAction)button_0:(UIButton *)sender; - (IBAction)button_dian:(UIBu ...
分类:
移动开发 时间:
2017-07-13 22:00:17
阅读次数:
266
#import <UIKit/UIKit.h> @interface ViewController : UIViewController<UIPickerViewDelegate,UIPickerViewDataSource>{ NSArray *_nameArray; } @property (s ...
分类:
移动开发 时间:
2017-07-10 14:33:26
阅读次数:
317
// // ViewController.m // UI-猜拳游戏 // // Created by jzq_mac on 15/7/15. // Copyright (c) 2015年 jzq_mac. All rights reserved. // #import "ViewController ...
分类:
移动开发 时间:
2017-07-10 10:20:54
阅读次数:
237
#import "ViewController.h" @interface ViewController ()<UITextViewDelegate> { UIView *bgView; UITextView *inputView; CGRect keyBoardRect; NSMutableArr ...
分类:
移动开发 时间:
2017-07-09 20:49:38
阅读次数:
199
其实就是在ViewController上先放一个image,就是你想要下拉的时候放大的,然后再放置一个tableView ,并设置 .tableHeaderView=headView 背景为透明色,并且headView的高度比image的高度小点以免在下拉的时候 出现白色不衔接的状态, 如果想要在头 ...
分类:
其他好文 时间:
2017-07-08 16:55:44
阅读次数:
132
微信的摇一摇功能想必大家都用过,过春节的时候抢红包也没少摇吧,那么用swift语言怎样实现这么酷炫的功能呢。摇动属于IOS内置可识别的一种动作,在你须要实现摇动功能的viewcontroller中。在viewDidLoad方法中增加下面代码: UIApplication.sharedApplicat ...
分类:
编程语言 时间:
2017-07-08 14:09:31
阅读次数:
133
这个总结来自于《Programming iOS 10》一书: 1、storyboard的初始化ViewController,通过方法instantiateInitialViewController. 2、通过StoryboardID加载,通过方法:instantiateViewController( ...
分类:
其他好文 时间:
2017-07-07 11:41:12
阅读次数:
156
#import "ViewController.h" #import <AVFoundation/AVFoundation.h> @interface ViewController () { AVPlayer *player; AVPlayerItem *playerItem; UIProgress ...
分类:
其他好文 时间:
2017-07-05 22:01:42
阅读次数:
187
在iOS7以后要打开手机摄像头或者相册的话都需要权限,在iOS9中更是更新了相册相关api的调用 首先新建一个swift工程,在SB中放上一个按钮,并在viewController中拖出点击事件 ok!按钮和事件设置好以后,我们来引入要用到的库,判断摄像头权限,需要引入AVFoundation.fr ...
分类:
移动开发 时间:
2017-07-05 13:46:26
阅读次数:
359