
报错集
黄培龙
你好,我是一名资深游戏客户端,做过休闲游戏、竞技游戏、mmorpg、战棋游戏、卡牌自走棋,SLG。
我擅长搭建框架、战斗系统、网络同步(状态同步、帧同步)、物理引擎、AI,熟悉渲染、性能优化。
我可以解决项目问题,提供技术培训,活好话少。我想做触动玩家的游戏。
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
c# float转int数值错误问题
来源float src = 0.02f;int intVal = (int)(src * 100);//结果intVal不是2,而是1原因0.02f实际是0.0199999f这样的数据处理Converter.ToInt32(floatVal)原创 2019-07-22 16:13:53 · 1824 阅读 · 0 评论 -
dyld: Library not loaded: @rpath/libswiftAVFoundation.dylib
dyld: Library not loaded: @rpath/libswiftAVFoundation.dylib解决方式设置Build Settings下的 Always Embed Swift Standard Libraries为Yes原创 2019-08-08 21:06:33 · 658 阅读 · 0 评论 -
OS X Framework Library not loaded: 'Image not found'
OS X Framework Library not loaded: ‘Image not found’解决方式在General/Embedded Binaries加入报错log中指明的库原创 2019-08-08 21:12:07 · 272 阅读 · 0 评论 -
XUPorter配了 "group": "GroupName"没有生成对应工程的文件夹
配置模板{ "group": "GroupName", "libs": [], "frameworks": ["Security.framework"], "headerpaths": [], "files": [], "folders": ["iOS/KKKeychain/"], "excludes": ["^.*.meta$...原创 2019-08-08 21:14:17 · 255 阅读 · 0 评论 -
解决The current .NET SDK does not support targeting .NET Core 2.1. Either target .NET Core 1.1 or low
问题The current .NET SDK does not support targeting .NET Core 2.1. Either target .NET Core 1.1 or lower, or use a version of the .NET SDK that supports .NET Core 2.1. Google.Protobuf.Test解决方式1安装.ne...原创 2019-08-07 20:05:48 · 4727 阅读 · 0 评论 -
Unhandled Exception: System.FormatException: Input string was not in a correct format.
目标在string.Format中输出{}这样的符号报错的代码形式string.Format(@"{0}{}{1},{2}", "a","b","c");修改string.Format(@"{0}{{content}}{1},{2}", "a","b","c");最后输出a{content}b,c...原创 2019-08-20 10:52:15 · 8259 阅读 · 0 评论 -
c# 使用gb2312读文本报错解决 System.NotSupportedException: No data is available for encoding 936.
报错代码var xDoc = XDocument.Parse(File.ReadAllText(xmlPath, Encoding.GetEncoding(936)));解决//936代表gb2312System.Text.Encoding.RegisterProvider(System.Text.CodePagesEncodingProvider.Instance);var xDoc...原创 2019-08-22 09:42:31 · 5767 阅读 · 1 评论 -
ITMS-90339: Deprecated Info.plist Key - The Info.plist contains a key 'UIApplicationExitsOnSuspend'
原因新版的ios废弃了UIApplicationExitsOnSuspendunity使用这个属性来定义程序进到后台的行为,即按下home键的app的行为解决方式There should not be any problem, unless you have a custom behavior in background.The default behavior for an iOS...原创 2019-09-16 20:49:10 · 3701 阅读 · 0 评论