最近在为一个客户在Dynamics CRM 4.0到Dynamics CRM 2013的升级,升级之后发现原来在Dynamics CRM 4.0中定义的全局Ribbon按钮像牛皮癣一样,在每个实体页面的ISV Group下都显示着,但又不显示正确的中文按钮名,并且也没有正确的执行相应的功能,所以需要...
分类:
其他好文 时间:
2015-02-05 13:00:42
阅读次数:
187
1 // Playground - noun: a place where people can play 2 3 import UIKit 4 5 6 //使用关键字class和struct来分别表示类和结构体 7 8 struct SomeStruct { 9 ...
分类:
编程语言 时间:
2015-02-05 00:44:23
阅读次数:
241
// Playground - noun: a place where people can playimport UIKit//=================================================================//函数//// func 函数名...
分类:
编程语言 时间:
2015-02-05 00:36:13
阅读次数:
235
1 // Playground - noun: a place where people can play 2 3 import UIKit 4 5 var str = "Hello, World!" 6 7 //1 定义变量常量/常量 8 // define const ...
分类:
编程语言 时间:
2015-02-05 00:34:52
阅读次数:
282
显式动画如果想让事情变得顺利,只有靠自己 -- 夏尔·纪尧姆上一章介绍了隐式动画的概念。隐式动画是在iOS平台创建动态用户界面的一种直接方式,也是UIKit动画机制的基础,不过它并不能涵盖所有的动画类型。在这一章中,我们将要研究一下显式动画,它能够对一些属性做指定的自定义动画,或者创建非线性动画,比...
分类:
移动开发 时间:
2015-02-04 18:21:12
阅读次数:
278
//
// ViewController.swift
// 项目之获取图片
//
// Created by
悦兑科技 on 15/2/4.
// Copyright (c) 2015年 BSY. All rights reserved.
//
import UIKit
class ViewController:
UIV...
分类:
编程语言 时间:
2015-02-04 13:02:05
阅读次数:
279
init method 关键知识点
问题描述:
fatal error: use of unimplemented initialer init(coder:) for class
代码一:
import UIKit
class ViewController:UIViewController{
init(nibName nibNameorNil:String?,bundle,nib...
分类:
其他好文 时间:
2015-02-04 11:07:16
阅读次数:
164
init method 关键知识点
问题描述:
fatal error: use of unimplemented initialer for class
代码二:
import UIKit
class ViewController:UIViewController{
var data:String?
init(para:String){
//那么参数 放...
分类:
其他好文 时间:
2015-02-04 11:06:45
阅读次数:
151
创建一个playGround,然后看一下代码,跟着打,别复制粘贴。 1 // Playground - noun: a place where people can play 2 3 import UIKit 4 5 // HelloWorld 6 var str = "Hello,...
分类:
编程语言 时间:
2015-02-03 14:49:53
阅读次数:
191
Assertion failure in -[UITableView _configureCellForDisplay:forIndexPath:], /SourceCache/UIKit/UIKit-3318.16.21/UITableView.m有时候用storyboard做uitableview会遇到这种bug,首先呢,你要检查下,自己写得cellide与storyboard里的cell的c...
分类:
其他好文 时间:
2015-02-02 23:16:51
阅读次数:
313