注意:添加CoreLocation及MapKit框架;在Info.plist中添加NSLocationWhenInUseUsageDescription及提示信息
//
// ViewController.m
// MyAddressMap
//
// Created by MQL on 15/3/20.
// Copyright (c) 2015年 MQL. All right...
#import "ViewController.h"
//加入引用的头文件
#import "UIView+MJExtension.h"
#import "MJRefresh.h"
static
const CGFloat MJDuration =
2.0;
@interface
ViewController ()UITable...
分类:
其他好文 时间:
2015-03-20 16:23:24
阅读次数:
166
问题:Appdelegate中- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { ViewController *VC=[[V.....
分类:
移动开发 时间:
2015-03-20 10:39:45
阅读次数:
161
如上图所示,如何装载Storyboard中指定的ViewController?首先,需要指定ViewController的ID,如上图右上方红色方框内的Storyboard ID。然后使用下面的代码:[cpp]view plaincopyUIStoryboard*mainStoryboard=[UI...
分类:
其他好文 时间:
2015-03-19 20:02:30
阅读次数:
122
依然是直接贴今天练习的代码 //
// ViewController.m
// 尝试音效
//
// Created by chen on 15/3/18.
// Copyright (c) 2015年 lanrw. All rights reserved.
//
#import "ViewController.h"
#import <AVFo...
分类:
移动开发 时间:
2015-03-18 23:29:37
阅读次数:
328
下面我们仔细学习具体的细节。创建一个空的IOS项目,接着在创建一个ViewController。AppDelegate.h 应用的代理类 这个没什么好说的就是直接打开刚刚创建的新ViewController。123456789#import #import "TestViewController.h...
分类:
移动开发 时间:
2015-03-17 21:42:21
阅读次数:
241
添加自定义大头针,使用系统大头针View#import "ViewController.h"#import #import "MyAnnotation.h"@interface ViewController () // 显示地图的View@property (weak, nonatomic) IBO...
分类:
其他好文 时间:
2015-03-17 17:35:06
阅读次数:
142
29down votefavorite12I have a viewController with aUITableView, the rows of which I allow to edit (delete) with a swipe - much like in the Mail app. I...
分类:
其他好文 时间:
2015-03-17 11:58:43
阅读次数:
223
微信的摇一摇功能想必大家都用过,过年的时候抢红包也没少摇吧,那么用swift语言如何实现这么酷炫的功能呢。摇动属于IOS内置可识别的一种动作,在你需要实现摇动功能的viewcontroller中,在viewDidLoad方法中加入以下代码:
UIApplication.sharedApplication().applicationSupportsShakeToEdit = true
...
分类:
编程语言 时间:
2015-03-17 10:33:34
阅读次数:
175
iOS8 生成二维码与条形码效果图:源码://// ViewController.m// CodeCreator//// Created by YouXianMing on 15/3/16.// Copyright (c) 2015年 YouXianMing. All rights rese...
分类:
移动开发 时间:
2015-03-16 22:51:00
阅读次数:
224