1.简介 PCH文件是Xcode编程中全局引用共享的文件。可以在这里引入头文件或者宏定义来方便程序中多个文件访问。 2.PCH文件创建 打开工程 New File… -> iOS Other -> PCH File 输入PCH文件名字即可 3. PCH 文件配置 ...
分类:
其他好文 时间:
2018-01-21 00:09:29
阅读次数:
158
(说明:本博客中的题目、题目详细说明及参考代码均摘自 “何海涛《剑指Offer:名企面试官精讲典型编程题》2012年”) 题目 实现函数 double Power(double base, int exponent),求 base 的 exponent 次方。不得使用库函数,同时不需要考虑大数问题。 ...
分类:
编程语言 时间:
2018-01-14 19:35:54
阅读次数:
233
var items=""; if(PCH_XMMCBox==1){ items=items&"1,项目名称"; } if(PCH_XMYQ==1){ items=items&";2,项目延期"; } if(PCH_ZYXMZB==1){ items=items&";3,重要项目指标"; } if(P... ...
分类:
其他好文 时间:
2018-01-11 15:56:40
阅读次数:
142
创建一个UWP项目 然后创建一个通用C++运行时项目 右键点击C++项目,添加一个C++类 在头文件中定义一个类 在cpp文件中引入 #include "pch.h"在UWP项目中引入C++项目 在UWP C#中就可以直接使用 C++中定义的类了 ...
分类:
编程语言 时间:
2018-01-08 16:50:32
阅读次数:
261
function UnicodeToAnsi(s: WideString): string;var lpChar: PChar; len: integer;begin len := Length(s) * 2; GetMem(lpChar, len); ZeroMemory(lpChar, len) ...
1、Delphi 的 Utf-8 转换 - findumars - 博客园.html https://www.cnblogs.com/findumars/archive/2013/12/26/3492891.html 新版的 Delphi 應該不用這麼麻煩, 據說只要直接在 AnsiString, ...
1. 派生CWnd类 class CTreePropertySheetEx : public CWnd 2. 注册窗口类 LPCTSTR AFXAPI AfxRegisterWndClass( UINT nClassStyle, HCURSOR hCursor = 0, HBRUSH hbrBack ...
分类:
其他好文 时间:
2017-12-21 00:14:51
阅读次数:
190
一、开启http 在Info.plist中添加NSAppTransportSecurity类型Dictionary。 在NSAppTransportSecurity下添加NSAllowsArbitraryLoads类型Boolean,值设为yes 二、配置pch文件 $(SRCROOT)/Micro ...
分类:
其他好文 时间:
2017-12-19 19:47:39
阅读次数:
174
unit Unit1; interface uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, V ...