+ (BOOL) isShowUserGuideLoad{ NSString *currentVersion = [[[NSBundle mainBundle] infoDictionary]objectForKey:@"CFBundleShortVersionString"];//version ...
分类:
移动开发 时间:
2017-05-31 16:33:36
阅读次数:
286
使用[[NSBundle mainBundle] appStoreReceiptURL]方式获取receipt (iOS7及以上获取receipt的方法) 普通付费 "latest_receipt_info" = (//注意这里是数组 { "expires_date" = "2015-07-21 1 ...
分类:
移动开发 时间:
2017-05-28 14:26:20
阅读次数:
307
蓝色文件访问 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 http://www.apple.com.cn/developer/iphone/library/documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/AudioandVi ...
分类:
移动开发 时间:
2017-05-22 18:26:29
阅读次数:
256
在Objective-C里事实上也能够执行AppleScript 第一种方式是Source 将脚本写到变量字符串里 NSAppleEventDescriptor *eventDescriptor = nil; NSAppleScript *script = nil; NSBundle *bunlde ...
分类:
移动开发 时间:
2017-05-06 15:53:03
阅读次数:
228
音乐播放 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播放本地音乐文件。 1、声明全局AudioPlayer变量: @property(nonatomic,strong)AVAudioPlayer *movePlayer ; 2、初始化变量并播放: NSString *tmp=[[NSBundle mainBundle]. ...
分类:
其他好文 时间:
2017-04-22 12:56:32
阅读次数:
256
一,效果图。 二,工程图。 三,代码。 RootViewController.h #import <UIKit/UIKit.h> @interface RootViewController : UIViewController @end RootViewController.m #import "R ...
分类:
移动开发 时间:
2017-04-18 09:38:42
阅读次数:
217
NSDictionary *infoDictionary = [[NSBundle mainBundle] infoDictionary]; CFShow(infoDictionary); // app名称 NSString *app_Name = [infoDictionary objectFor ...
分类:
移动开发 时间:
2017-04-12 11:31:36
阅读次数:
236