WWDC14除了发布了OS X v10.10和switf外,iOS8.0也开始变得更加开放了。说到开放,当然要数应用扩展(App Extension)了。...
分类:
移动开发 时间:
2015-01-14 21:29:45
阅读次数:
411
Extension Method: Return another string if string is null or emptyJust a tiny little extension method. You may know the ?? operator for null checks:va...
分类:
其他好文 时间:
2015-01-13 23:00:25
阅读次数:
211
/// /// The i enumerable extension. /// public static class IEnumerableExtension { #region Join /// /// 根据字符串拆分数组...
分类:
编程语言 时间:
2015-01-12 10:44:50
阅读次数:
139
最近为了能让PDF在线review,所以安装了460287_intl_x64_zip.exe 这个OWA的hotfix, 安装后,发现OWA挂了,一段搜索之后,发现要重新配置OWA: 1. 在OWA的机器上配置OWA Farm Import-Module OfficeWebApps
New-OfficeWebAppsFarm -InternalUrl "OWA Server FQDN...
分类:
移动开发 时间:
2015-01-11 12:23:00
阅读次数:
241
1,下载安装包 来到php的官方扩展库下载地址,然后搜索redis,找到stable版本的稳定包,下载到本地,准备扩展安装 pecl(The PHP Extension Community Library)地址:http://www.pecl.php.net/ redis下载地址:h...
分类:
Web程序 时间:
2015-01-09 12:49:47
阅读次数:
227
1,编译安装Apache的时候没有报错,版本是httpd-2.2.29.tar.gz2,安装MySQL时也没有报错,版本是MySQL-server-5.6.17记得大概是的3,编译安装PHPadmin也没有报错3,编译安装PHP时,出现报错的次数比较多1)./configure--with-mysql=/usr/local/mysql--with-apxs2=/usr/local/apa..
分类:
Web程序 时间:
2015-01-08 11:34:48
阅读次数:
167
/**
* 获取UIColor对象的HSB字符串值。
*
*/
- (NSString *)getHSBStringByColor:(UIColor *)originColor {
// Method provided by the Colours class extension
NSDictionary *hsbDict = [self
getHS...
分类:
移动开发 时间:
2015-01-06 12:04:08
阅读次数:
145
- (NSString *)getCIELABString:(UIColor *)originColor {
// Method provided by the Colours class extension
NSDictionary *cieDict = [self
getCIE_LabArrayByColor:originColor ];
return [NSS...
分类:
移动开发 时间:
2015-01-06 11:56:51
阅读次数:
173