码迷,mamicode.com
首页 >  
搜索关键字:nsbundle    ( 385个结果
ios开发首次安装或者版本升级的引导页的判断
+ (BOOL) isShowUserGuideLoad{ NSString *currentVersion = [[[NSBundle mainBundle] infoDictionary]objectForKey:@"CFBundleShortVersionString"];//version ...
分类:移动开发   时间:2017-05-31 16:33:36    阅读次数:286
苹果receipt例子
使用[[NSBundle mainBundle] appStoreReceiptURL]方式获取receipt (iOS7及以上获取receipt的方法) 普通付费 "latest_receipt_info" = (//注意这里是数组 { "expires_date" = "2015-07-21 1 ...
分类:移动开发   时间:2017-05-28 14:26:20    阅读次数:307
folder ground 文件访问
蓝色文件访问 NSString * path = [[NSBundle mainBundle]pathForResource:@"one/two/two" ofType:@"html"]; NSString *html = [NSString stringWithContentsOfFile:pat ...
分类:其他好文   时间:2017-05-25 13:42:42    阅读次数:133
IOS后台播放音乐
IOS后台播放音乐 博客分类: IOS IOS后台播放音乐 IOS http://www.apple.com.cn/developer/iphone/library/documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/AudioandVi ...
分类:移动开发   时间:2017-05-22 18:26:29    阅读次数:256
Objective-C 执行AppleScript脚本
在Objective-C里事实上也能够执行AppleScript 第一种方式是Source 将脚本写到变量字符串里 NSAppleEventDescriptor *eventDescriptor = nil; NSAppleScript *script = nil; NSBundle *bunlde ...
分类:移动开发   时间:2017-05-06 15:53:03    阅读次数:228
iOS 调用音乐播放以及视频播放器
音乐播放 NSString *path = [[NSBundle mainBundle] pathForResource:@"预谋" ofType:@"mp3"]; if (path) { NSURL *url = [NSURL fileURLWithPath:path]; player= [[AV ...
分类:移动开发   时间:2017-04-29 12:53:25    阅读次数:230
通知---视图间数据的传递:标签显示输入的内容【多个视图中】
RootViewController.m - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil { self = [super initWithNibName:nibNameOrNil bun ...
分类:其他好文   时间:2017-04-27 10:30:13    阅读次数:137
使用AVAudioPlayer播放音乐文件无声音
使用AVAudioPlayer播放本地音乐文件。 1、声明全局AudioPlayer变量: @property(nonatomic,strong)AVAudioPlayer *movePlayer ; 2、初始化变量并播放: NSString *tmp=[[NSBundle mainBundle]. ...
分类:其他好文   时间:2017-04-22 12:56:32    阅读次数:256
【代码笔记】iOS-gif图片播放
一,效果图。 二,工程图。 三,代码。 RootViewController.h #import <UIKit/UIKit.h> @interface RootViewController : UIViewController @end RootViewController.m #import "R ...
分类:移动开发   时间:2017-04-18 09:38:42    阅读次数:217
iOS 获取当前应用的信息以及用户信息:版本号手机号手机型号
NSDictionary *infoDictionary = [[NSBundle mainBundle] infoDictionary]; CFShow(infoDictionary); // app名称 NSString *app_Name = [infoDictionary objectFor ...
分类:移动开发   时间:2017-04-12 11:31:36    阅读次数:236
385条   上一页 1 2 3 4 5 6 ... 39 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!