1、使用UIWebView加载网页运行XCode 4.3,新建一个Single View Application,命名为WebViewDemo。2、加载WebView在ViewController.h添加WebView成员变量和在ViewController.m添加实现[cpp]view plain...
分类:
移动开发 时间:
2014-11-24 13:32:37
阅读次数:
127
用Swift语言进行iOS开发,如需加上背景音乐并进行简单地控制可以使用AV Foundation框架,而对于压缩过的Audio文件或者超过30秒的音频文件,则使用AVAudioPlayer类。为APP加上背景音乐? 首先,在ViewController.swift的文件顶部添加?行代码:impor...
分类:
移动开发 时间:
2014-11-21 15:56:44
阅读次数:
202
#import@interface ViewController : UIViewController@property (retain, nonatomic) IBOutlet UIImageView *imgV;- (IBAction)openCamera:(id)sender;- (IBAct...
分类:
移动开发 时间:
2014-11-20 06:48:42
阅读次数:
257
#import #import "ViewController.h"@interface ViewController ()@property(nonatomic, weak) IBOutlet UILabel *label1;@end@implementation ViewController- ...
分类:
其他好文 时间:
2014-11-20 06:44:28
阅读次数:
307
ViewController是iOS应用程序中重要的部分,是应用程序数据和视图之间的重要桥梁,ViewController管理应用中的众多视图。iOS的SDK中提供很多原生ViewController,以支持标准的用户界面,例如表视图控制器(UITableViewController)、导航控制器(...
分类:
移动开发 时间:
2014-11-20 00:01:26
阅读次数:
309
学习swift 真是件头疼的事情 会的人少,又没有OC基础,所以 且学切珍惜吧。在做登录的时候发现textfiled 自动调用键盘后不能隐藏?头疼 ~~~~询问了好多人 终于有人自写解答 为了方便后人 写博客~~~首先这是用delegate 系统默认的属性第一步 在你的viewcontroller ...
分类:
编程语言 时间:
2014-11-19 15:47:51
阅读次数:
215
本app(仿手机支付宝界面)主要演示了: 动态显示splashimage如何控制手势密码(AES加密保存数据)如何控制viewcontroller之间的跳转,viewcontroller的代理控制。TabbarController与navigationControlle结合使用动态显示splashi...
分类:
移动开发 时间:
2014-11-19 12:15:17
阅读次数:
2189
环境:xcode5.1+ios7.1
需求:A试图 的scroll添加 B视图;【A addSubview:B.view】
问题:
1、B视图加载到A视图上了,但Openflow的图片未加载;后经调试是openflow的代理未加载,--》B视图的viewDidAppear方法为执行;
分析原因:
如果包含在一个viewController中的view被直接添加到一个view上,就像这样:...
分类:
移动开发 时间:
2014-11-19 07:31:59
阅读次数:
184
用CALayer实现下载进度条效果:源码://// ViewController.m// ProgressView//// Created by YouXianMing on 14/11/18.// Copyright (c) 2014年 YouXianMing. All rights re...
分类:
其他好文 时间:
2014-11-19 07:04:43
阅读次数:
240
把默认Main.storyboard的默认scene(情景)删除后,拖入新的ViewController,并指定其关联的ViewController类,运行程序。控制台输出信息如下:Failed to instantiate the default view controller for UIMai...
分类:
移动开发 时间:
2014-11-17 13:47:46
阅读次数:
453