E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
pathForResource
获取文件属性
- (NSString *) getCompletePath{ return [[NSBundle mainBundle]
pathForResource
:@"test"
jsntghf
·
2011-10-29 19:00
ios
iPhone
文件属性
获取文件属性
- (NSString *) getCompletePath{ return [[NSBundle mainBundle]
pathForResource
:@"test"
jsntghf
·
2011-10-29 19:00
ios
iPhone
文件属性
批量加载图片资源时模拟器的显示而真机不显示的小问题
有时候需要批量加载一个文件夹的所有资源,这时候会用到NSArray*ary=[[NSFileManagerdefaultManager]contentsOfDirectoryAtPath:[[NSBundlemainBundle]
pathForResource
zhuangyou123
·
2011-10-27 14:00
ios
image
Path
iphone播放音乐的2种方式
AudioToolbox/AudioToolbox.h> 加载AudioToolbox.framework 2.获取文件路径 NSString *path = [[NSBundle mainBundle]
pathForResource
wsqwsq000
·
2011-10-27 01:00
iPhone
iphone播放音乐的2种方式
AudioToolbox/AudioToolbox.h> 加载AudioToolbox.framework 2.获取文件路径 NSString *path = [[NSBundle mainBundle]
pathForResource
wsqwsq000
·
2011-10-27 01:00
iPhone
OpenAL快速入门教程
快速入门教程OpenAL快速入门1.为什么使用OpenAL也许你已经用过AudioToolbox框架并用以下代码来播放一个音乐文件:NSString*path=[[NSBundlemainBundle]
pathForResource
LuckilyYu
·
2011-10-21 17:00
《30天精通iPhone手机编程》-Day20-DJ混音器
viewDidLoad{ [superviewDidLoad]; //获取吉他声音播放器所播放的声音文件的路径名 NSString*guitarfilePath=[[NSBundlemainBundle]
pathForResource
mmc7621
·
2011-10-03 18:00
编程
url
iPhone
手机
object-c获取文件or路径
1,获取资源文件路径NSString*filePath=[[NSBundlemainBundle]
pathForResource
:@"MyFile"ofType:@"txt"]; NSData*myData
xu_yunan
·
2011-09-25 23:00
NSBundle使用
使用主束来获取需要的资源文件: NSBundle *bundle = [NSBundle mainBundle]; NSString *plistPath = [bundle
pathForResource
mcgtts
·
2011-09-20 14:00
Bundle
向iPhone模拟器中添加视频
NSString *path=[[NSBundle mainBundle]
pathForResource
:@"视频名称" ofType
yangping_Account
·
2011-09-19 23:00
iPhone
iphone播放本地视频
UIApplication sharedApplication].statusBarHidden = YES; NSString *urlStr = [[NSBundle mainBundle]
pathForResource
374016526
·
2011-09-15 15:00
iPhone
向iPhone模拟器中添加视频
NSString *path=[[NSBundle mainBundle]
pathForResource
:@"视频名称" ofType:@"mp4"];if(UIVideoAtPathIsCompatibleWithSavedPhotosAlbum
linzhiji
·
2011-09-06 16:00
iphone开发--时间的获取与字符串的连接
//addthebackgroundtext.frame=self.view.frame;NSString *path=[[NSBundle mainBundle]
pathForResource
:@"beijing
dyhbrewer
·
2011-09-01 15:00
iOS开发中不要使用相对路径
而使用[NSDatadataWithContentOfFile:[[NSBundlemainBundle]
pathForResource
:@”foo”ofType:@”"]的时候就可以。
无鸯
·
2011-08-24 15:00
两种图片加载方式的区别
//1.不缓存,适合加载不常用大图UIImage*img=[UIImageimageWithContentsOfFile:[[NSBundlemainBundle]
pathForResource
:@"Default"ofType
xu_yunan
·
2011-08-12 17:00
Plist文件载入
NSBundle *bundle = [NSBundle mainBundle]; NSString *plistPath = [bundle
pathForResource
:@"File Name
yvfeng
·
2011-08-04 17:00
apple
Objective-C
iphone app中读取本地txt,csv文件 转载
原文地址:iphone app中读取本地txt,csv文件作者:醉吻花颜-(void)readLocalData{NSString*path=[[NSBundlemainBundle]
pathForResource
zaitianaoxiang
·
2011-08-01 13:00
iPhone
Path
csv
iphone/android比较学习之──图片、文件、字符串
1.显示图片这两个平台都很简单:iphone中使用UIImage,告诉它文件path就可以了android中使用ImageView,同样非常简单2.读取文件iphone中一般借助NSBundle的
pathForResource
pjk1129
·
2011-07-20 13:00
android
String
iPhone
buffer
Path
byte
iOS 取资源文件路径
char*path=[[[NSBundlemainBundle]
pathForResource
:@"test"ofType:@"png"]UTF8String];
spmno
·
2011-07-19 11:00
ios
String
Path
读取plist文件
取得mainBundle NSBundle *bundle = [NSBundle mainBundle]; //取得文件路径 NSString *plistPath = [bundle
pathForResource
jsntghf
·
2011-07-09 18:00
ios
plist
读取plist文件
取得mainBundle NSBundle *bundle = [NSBundle mainBundle]; //取得文件路径 NSString *plistPath = [bundle
pathForResource
jsntghf
·
2011-07-09 18:00
ios
plist
UITExtView代替uilabel 自适应文本的高度
NSString*filePathA=[[NSBundlemainBundle]
pathForResource
:@"a"ofType:@"txt"]; NSString*s=[NSStringstringWithContentsOfFile
慎道
·
2011-07-08 16:00
iPhone游戏中既播放背景音乐又播放特效声音的办
此时您可以试试以下方法 NSString *musicFilePath = [[NSBundle mainBundle]
pathForResource
:fileName
yangping_Account
·
2011-07-05 15:00
iPhone
常用小问题
1.获得资源文件路径://-(NSString*)
pathForResource
:(NSString*)nameofType:(NSString*)extensionNSString*path=[[NSBundlemainBundle
命苦
·
2011-07-05 12:15
职场
iPhone
例子
休闲
Cocoa 解析xml文件
xml的类,NSXMLParser及其代理NSXMLParserDelegate 展示一段事例代码,自己的小应用中用到的:NSString*filePath=[[NSBundlemainBundle]
pathForResource
xianpengliu
·
2011-06-21 00:00
xml
cocoa
String
File
attributes
iphone app包中各个目录的访问
1. app包内资源的访问: NSString* docPath = [[NSBundle mainBundle]
pathForResource
:@"test"
zani
·
2011-06-14 10:00
iPhone
iPhone中如何从Application Bundle中读取文件
然后可以如下访问文件,假设文件为MyFile.txt:1NSString*filePath=[[NSBundlemainBundle]
pathForResource
:@"MyFile"ofType:@"
sjzsp
·
2011-04-22 11:00
xcode
application
iPhone
resources
encoding
iPhone/iPad 开发: 解析本地/网络上的xml文件
1、解析本地xml文件Java代码 //找到本地test.xml文件 NSString*path = [[NSBundlemainBundle]
pathForResource
:@"test"ofType
sjzsp
·
2011-04-11 10:00
java
xml
网络
File
Path
AVAudioPlayer 应用小示例
NSString *soundPath=[[NSBundle mainBundle]
pathForResource
:NSLocalizedStringFromTable([_dictionary objectForKey
siruoxian
·
2011-03-25 13:00
play
UIImage应用与内存管理
imageNamed函数引用[UIImageimageNamed:ImageName];二、用NSData的方式加载,例如:引用1.NSString*filePath=[[NSBundlemainBundle]
pathForResource
toyota2006
·
2011-03-24 10:00
网络应用
Cache
读取文件操作
//获取路径 NSString *path=[[NSBundle mainBundle]
pathForResource
:@"file3" ofType:@&
咖啡动力
·
2011-03-21 16:00
文件操作
【iPhone开发常用代码积累】UIWebView
添加要显示的文件(通常在ViewDidLoad方法中)//添加要显示的文件NSString*filePath=[[NSBundlemainBundle]
pathForResource
:@"HitBean"ofType
banyingli
·
2011-01-09 10:00
iPhone中如何从Application Bundle中读取文件
然后可以如下访问文件,假设文件为MyFile.txt: NSString *filePath = [[NSBundle mainBundle]
pathForResource
:@"MyFile
niCe
·
2010-12-30 14:00
html
xcode
[zt]iPhone游戏中既播放背景音乐又播放特效声音的办
此时您可以试试以下方法 NSString *musicFilePath = [[NSBundle mainBundle]
pathForResource
:fileName ofType:@wav]; /
beike
·
2010-12-25 18:00
游戏
框架
音乐
iPhone/iPad 开发: 解析本地/网络上的xml文件(实例建附件)
阅读更多1、解析本地xml文件//找到本地test.xml文件NSString*path=[[NSBundlemainBundle]
pathForResource
:@"test"ofType:@"xml
toyota2006
·
2010-11-16 11:00
XML
iPhone/iPad 开发: 解析本地/网络上的xml文件(实例建附件)
1、解析本地xml文件 //找到本地test.xml文件 NSString*path = [[NSBundlemainBundle]
pathForResource
:@"test
toyota2006
·
2010-11-16 11:00
xml
NSArray转为NSMutableArray
NSDictionary *names; NSMutableArray *keys; NSString *path = [[NSBundle mainBundle]
pathForResource
aitracy
·
2010-09-15 19:00
NSArray
iPhone 利用系统播放音频文件
SystemSoundID pmph; id sndpath = [[NSBundle mainBundle]
pathForResource
:@"pmph1&
mislay
·
2010-08-03 22:00
iPhone
iPhone工程资源管理,资源路径总结
image =[UIImage imageNamed: @"fakeXcode.png"]; NSString *path = [[NSBundle mainBundle]
pathForResource
61party
·
2010-06-29 15:00
iPhone
iphone app中读取本地txt,csv文件
-(void)readLocalData{NSString*path=[[NSBundlemainBundle]
pathForResource
:@"test"ofType:@"txt"];NSString
ToddFox
·
2010-05-14 08:00
iPhone
Path
csv
encoding
uiimage
UIImageimageNamed:@"12-6PM.png"]; UIImage*image1=[UIImageimageWithContentsOfFile:[[NSBundlemainBundle]
pathForResource
ljuncong
·
2010-03-19 11:00
上一页
11
12
13
14
15
16
17
18
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他