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
nsbundle
Could not load NIB in bundle: '
NSBundle
当用cocoapod创建一个组件时,在加载xib或者nib的时候总是报“CouldnotloadNIBinbundle:'
NSBundle
、、、”错误解决方法:1、在AmafirePackage.podspec
杏子_2fd0
·
2024-02-14 19:16
iOS开发获取版本号
//此获取的版本号对应bundle,打印出来对应为12345这样的数字NSNumber*number=[[[
NSBundle
mainBundle]infoDictionary]objectForKey:
Stephen_Huang
·
2024-02-14 05:25
NSBundle
和SandBox
NSBundle
:资源包,程序上传以及从Appstore上下载的就是这个包,在目录中表现为xxx.app。它包含了应用程序正常运行的所有资源文件和可执行文件等,对用户来说只能读不能写(为了程序安全)。
薛定谔的汪汪
·
2024-02-05 10:37
白鹭引擎0.1.8微端导出的IOS app包,白色闪屏问题
AppDelegate文件内,didFinishLaunchingWithOptions函数内添加如下方法://引擎加载的时候,会有闪屏,把白色的闪屏,换成想要的闪屏图片NSString*path=[[
NSBundle
mainBundle
crazyVicky
·
2024-02-03 02:13
2019-03-21 获取plist文件里的内容
获取plist文件里的内容(可以扩充)*/+(NSString*)plistContentWithName:(NSString*)name{NSDictionary*infoDictionary=[[
NSBundle
mainBundle
超喜欢灌木的味道
·
2024-01-31 23:39
iOS解压ZIP压缩包
cocoapods导入pod'SSZipArchive'二:导入头文件#import"SSZipArchive.h"三:获取zip压缩包文件路径获取文件的方式方法一:NSString*filePath=[[
NSBundle
mainBundle
鄂北
·
2024-01-31 22:15
AVAudioEngine 使用记录
selfstartRecording];[selfaddFileToPlayNode];}//播放文件加载到audioFile-(void)addAudioFileToAudioFile{NSURL*urlq=[[
NSBundle
mainBundle
woo_5857
·
2024-01-31 14:02
【iOS】加载图片的两种方式
加载图片有两种方式:imageNamed和imageWithContentsOfFileUIImage*image=[UIImageimageNamed:@“xxx”];NSString*filePath=[[
NSBundle
mainBundle
an_Anthony
·
2024-01-27 03:51
静态库和framework的封装
否则提审的时候可能会报Executablefile相关的错误bundle中资源的获取方法+(
NSBundle
*)getResourcesBund
liboxiang
·
2024-01-23 12:40
iOS App版本迭代时对数据库的影响
一、以下是获取Appinfo.plist文件内容[[
NSBundle
mainBundle]infoDictionary]获得的是一个字典,里边放着Info.plist文件中的各种信息,根据不同的键去即可
Fly丶心晨
·
2024-01-23 09:18
2019-03-04 iOS 8/9 系统 使用WKWebview ,针对本地加载HTML代码问题(loadHTMLString:baseURL:)
系统使用WKWebview,针对本地加载HTML代码问题(loadHTMLString:baseURL:)问题:加载本地图片iOS10以后通过下面的代码可以解决加载本地图片NSString*path=[[
NSBundle
mainBundle
Cocoa_Coder
·
2024-01-20 20:08
ios 获取工程内文件的路径
image.png2.代码获取路径//添加在工程文件最外层使用方式NSString*path=[[
NSBundle
mainBundle]pathForResource:@"文件名"ofType:@"后缀
天天星期天
·
2024-01-20 08:03
NSBundle
介绍
bundle是一个目录,其中包含了程序会使用到的资源.这些资源包含了如图像,声音,编译好的代码,nib文件(用户也会把bundle称为plug-in).对应bundle,cocoa提供了类
NSBundle
拳战攻城师
·
2024-01-20 03:45
iOS开发技巧之:获取iOS项目名称及版本号
NSString*executableFile=[[[
NSBundle
mainBundle]infoDictionary]objectForKey:(NSString*)kCFBundleExecutableKey
VKOOY
·
2024-01-19 10:49
iOS
Version
版本
获取
iOS加载本地html
要做的很简单,先把要加载的东西添加进工程,然后实现本地加载即可NSString*htmlPath=[[
NSBundle
mainBundle]pathForResource:@"index"ofType:
石卒2018
·
2024-01-18 08:24
一个xib 描述两个View
instancetype)loginView;+(instancetype)registerView;pragmamark--登录xib+(instancetype)loginView{return[[[
NSBundle
mainBundle
米亚流年
·
2024-01-07 13:09
UIWebView更换WKWebView
-(void)loadRequest:(NSURLRequest*)request;可以请求本地文件也可以请求网络资源NSURL*fileURL=[[
NSBundle
mainBundle]URLForResource
Hyman_luo
·
2024-01-06 08:54
删除Main.storyboard报错Could not find a storyboard named 'Main' in bundle
NSBundle
近期开始Review,所以从Base部分开始做些笔记,希望自己能坚持下去,由浅入深,一步一个脚印积累。首先就创建一个新项目开始吧。我们都知道,Xcode新建一个Project时,都会默认生成一个Main.storyboard,点击Main.storyboard,可以看到如下图所示:Main.storyboard此时,如果删除1的箭头或取消2的勾选,运行则会报错提示:删除1或取消2后运行报错问题的根
舒小妮儿
·
2024-01-04 14:17
总结一套swift版本的APP内切换国际化语言
自己写一个工具类DAConfig;一个Bundle的子类
NSBundle
Ex;一个Bundle的扩展协议;classDAConfig:NSObject{staticletUWUserLanguageKey
从小就是菜鸟
·
2024-01-02 15:09
SVGAPlayer-ReactNative
官方支持版本使用importSVGAPlayerfrom'svgaplayer';...render(){return()}参数source:String-SVGA动画文件的路径,可以是URL,或是本地
NSBundle
.mainBundle
svgadesiner
·
2023-12-31 03:29
iOS 开发之播放本地视频没效果
这个问题出在于加载资源的方式上了,下面放四段代码:-(void)playVideo0{NSString*videoPath=[[
NSBundle
mainBundle]pathForResource:@"
KODIE
·
2023-12-31 01:39
iOS- 读取XML中文乱码
将NSASCIIStringEncoding改成NSUTF8StringEncodingNSString*xmlFilePath=[[
NSBundle
mainBundle]pathForResource
malgee
·
2023-12-22 07:49
Xcode中的Info.plist字段列表详解
常用字段:1.获取版本信息:NSDictionary*infoDic=[[
NSBundle
mainBundle]infoDictionary];NSString*localVersion=[infoDicobjectForKey
Mr姜饼
·
2023-12-21 09:56
iOS 添加使用特殊字体
1plist文件中添加Fontsprovidedbyapplication名字要对应2获取特殊字体使用时的实际名字NSString*path=[[
NSBundle
mainBundle]pathForResource
LAOning11
·
2023-12-02 21:39
ios
特殊字体
异常关键字@thorw 异常类NSException
NSString*bundleId=[[
NSBundle
mainBundle]bundleIdentifier];NSString*format=@"ConfigureAPIKeyinsideSDKDemoAPIKey.hforyour
张无奈
·
2023-11-29 15:44
2018-03-14如何在代码中利用app图标
第一步获取bundle中的路径信息:NSDictionary*infoDict=[[
NSBundle
mainBundle]infoDictionary];第二部:获取app中所有icon名字数组NSArray
songjk
·
2023-11-26 08:49
Storyboard 代码加载
和一个HomeViewControllerAppDelegate.mUIStoryboard*homeSB=[UIStoryboardstoryboardWithName:@"Home"bundle:[
NSBundle
mainBundle
CaptainRoy
·
2023-11-21 15:03
push跳转到XIB关联的VC
CreatePlanetSecondStepViewControlleralloc]initWithNibName:@"CreatePlanetSecondStepViewController"bundle:[
NSBundle
mainBundle
钟华威
·
2023-11-21 11:06
iOS系统设置
NSString*iPhoneName=[UIDevicecurrentDevice].name;NSLog(@"iPhone名称-->%@",iPhoneName);NSString*appVerion=[[[
NSBundle
mai
梦门户
·
2023-11-05 07:31
-[UIImage _isCached]: message sent to deallocated instance 0xde8ce90
可能会遇到这种提示,这说明,你的代码里加载图片的用的是:UIImage*image=[UIImageimageNamed:@"btn1.png"];你应该是这样用:NSString*imagePath=[[
NSBundle
mainBundle
comeontom
·
2023-11-03 12:35
objective-c基础
iPad
iPhone开发
image
测试
iOS 共享到Mail邮件
//Mail#import-(void)emailAction{[selfsendMailWithFilePath:[[
NSBundle
mai
valiant_xin
·
2023-11-03 03:37
Swift String转Class
=
NSBundle
.mainBundle().objectForInfoDictionaryKey("
小明讲啥故事
·
2023-11-01 03:31
OpenCV iOS 视频处理 (3
1.读取视频CvCapture*cvVideo;idres=[[[
NSBundle
mainBundle]resourcePath]stringByAppendingPathComponent:@"video2
Zszen
·
2023-10-31 11:16
iOS WKWebView 加载本地Html带参数
解决办法:Addedfolders选择Createfolderreferences;或者将文件压缩,拖到项目中,然后解压到沙盒目录下1、加载本地html不带参数NSString*pathString=[[
NSBundle
mainBundle
Zxinli
·
2023-10-30 21:33
ios视频播放
//本地资源文件NSString*filePath=[[
NSBundle
mainBundle]pathForResource:@"111.mp4"ofType:nil];//创建视频播放控制器AVPlayerViewController
傻人有傻福i
·
2023-10-30 14:49
UIViewController的生命周期
initWithCoder:([NSCoder]*)decoder;-(instancetype)initWithNibName:(nullableNSString*)nibNameOrNilbundle:(nullable
NSBundle
希尔罗斯沃德_董
·
2023-10-24 09:11
RAC之RACSequence简单学习
创建一个model类:RACSequenceModel创建数据模型:NSString*path=[[
NSBundle
mainBundle]pathForResource:@"flags.plist"ofType
带有bug的文艺青年
·
2023-10-24 08:04
【Eclipse插件开发】Eclipse p2入门
Eclipsep2随笔p2基础文件布局dropinsSupporteddropinsformatsDebuggingdropi
nsbundle
poolingInstallerRunningthep2UIfromaself-hostedworkbenchp2
老毛桃limite
·
2023-10-23 06:44
Eclipse插件开发
Eclipse插件开发
p2
NSBundle
一
指定所需资源的名称的时候不要包含这些修辞符(@2x\@3x\_ipone\~ipad)objc分为mainBundle、allFrameworks、allBundles创建和初始化
NSbundle
url
写代码的小书童
·
2023-10-17 17:16
手机路径、Windows路径知识及delphiXE跨设备APP自动下载和升级
AndroidManifest.xml获取versionName2、运行时动态调用IOSipa的info.plist获取CFBundleVersion(和entitlements)usesiOSapi.Foundation;
NSBundle
tjsoft
·
2023-10-16 10:20
智能手机
windows
获取ios应用的相关配置信息
void)isFromJailbrokenChannel{//取出embedded.mobileprovision这个描述文件的内容进行判断NSString*mobileProvisionPath=[[
NSBundle
mainBundle
杨闯
·
2023-10-14 15:08
VUE 与 原生交互(iOS为主)
iOS环境:wkwebview加载本地js文件要用fileURLWithPath,并且资源文件要采用folderreferencesimage.pngNSString*filePath=[[
NSBundle
mainBundle
Mehmet
·
2023-10-12 20:29
判断iPhone、iPad应用运行在M1的Mac OS上
网上还有一些别的通过UIDevice,
NSBundle
,utsname等等,个人觉得最好的还是通过ProcessInfo来判断varisiOSAppOnMac=falseif#available(iOS14.0
☆MOON
·
2023-10-11 03:02
移动互联网-iOS笔记
iphone
ipad
ios
iOS开发---常用文件读写操作。
NSError*error;NSString*textFileContents=[NSStringstringWithContentsOfFile:[[
NSBundle
mainBundle]pathForResource
「已注销」
·
2023-10-11 01:49
iOS开发
xcode
ios
文件管理器
文件系统
沙盒
iOS获取APP的Launch Image
NSString*viewOrientation=@"Portrait";//横屏请设置成@"Landscape"NSString*launchImage=nil;NSArray*imagesDict=[[[
NSBundle
mainBundle
mnz12138
·
2023-10-08 10:53
UIViewController 的 生命周期
//非storyBoard(xib或非xib)都走这个方法-(instancetype)initWithNibName:(NSString*)nibNameOrNilbundle:(
NSBundle
*)
平常心_kale
·
2023-10-04 04:47
iOS 视频处理(获取第一帧图片/视频时长...)
;//本地视频//NSString*path=[[
NSBundle
mainBundle]pathForResource:@"开屏视频.mp4"ofType:nil];//NSURL*url=[NSURLfileURLWithPath
浅宇落
·
2023-10-02 23:42
DB文件转化json文件转化成plist文件
然后你就会打开一切DB文件,不需要任何辅助就能以json的格式导出,这样我们就可以用了,但是如果还觉得不够爽的话,就根据代码吧json转化成plist文件简单么NSString*dataPath=[[
NSBundle
mainBundle
头脑很慢的程序员
·
2023-09-30 16:42
Unity和iOS交互
extern"C"voidPrivacyPolicy(){}extern"C"intGetNetState(){return0;}extern"C"constchar*GetVerName(){NSDictionary*infos=[[
NSBundle
mainBundle
aaa000
·
2023-09-27 00:01
pathForResource获取不到数据
使用如下方式获取文件路径:NSString*path=[[
NSBundle
mainBundle]pathForResource:@"icon"ofType:@"png"];但是一直返回的nil。
狗狗臭鸡蛋
·
2023-09-24 14:32
上一页
1
2
3
4
5
6
7
8
下一页
按字母分类:
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
其他