码迷,mamicode.com
首页 >  
搜索关键字:implementation    ( 1803个结果
objective-c +方法 -方法的使用
@interface people : NSObject -(void)eat; +(void)eat; @end @implementation people -(void)eat { NSLog(@"我是被类的实例调用-方法"); } +(void)eat { NSLog(@"我是被类调用的+方 ...
分类:其他好文   时间:2016-04-16 12:20:31    阅读次数:147
点击动画
#import "ViewController.h" #import "SDmoreCircle.h" @interface ViewController () @end @implementation ViewController - (void)viewDidLoad { [super view ...
分类:其他好文   时间:2016-04-12 00:21:56    阅读次数:111
高性能MySQL笔记-第4章Optimizing Schema and Data Types
1.Good schema design is pretty universal, but of course MySQL has special implementation details to consider. In a nutshell, it’s a good idea to keep ...
分类:数据库   时间:2016-04-11 22:35:25    阅读次数:236
ios纯代码实现小飞机移动
#import "ViewController.h" @interface ViewController () @end @implementation ViewController - (void)viewDidLoad { [super viewDidLoad]; // Do any addit ...
分类:移动开发   时间:2016-04-10 21:21:04    阅读次数:404
此实现不是 Windows 平台 FIPS 验证的加密算法的一部分的解决办法方案
windoows客户端程序在中文win7操作系统上安装正常,在一台英文win7操作系统上安装后,登录的时候提示下面的错误: System.InvalidOperationException: This implementation is not part of the Windows Platfor ...
分类:编程语言   时间:2016-04-08 18:03:55    阅读次数:172
图片的压缩(上传图片太大的话,上传不到服务器)
#define COMMON_COMPRSSION_FACTOR 0.8f //1.设置固定的压缩系数0~1 #define MAX_IMAGE_SIZE (1 * 1024 * 1024)//2.服务器能接受的最大的图片大小1024*1024是1M @implementation SACompre ...
分类:Web程序   时间:2016-04-07 15:57:25    阅读次数:188
Azure Cloud Application Design and Implementation Guidance performance-optimization
https://github.com/mspnp/azure-guidance https://github.com/mspnp/performance-optimization https://github.com/mspnp/data-pipeline Cloud Design Patterns ...
分类:移动开发   时间:2016-04-05 00:04:01    阅读次数:195
C++: The PIMPL idiom
什么是PIMPL(pointer to implementation) ? see: http://stackoverflow.com/questions/8972588/is-the-pimpl-idiom-really-used-in-practice https://msdn.microsof ...
分类:编程语言   时间:2016-04-03 23:28:29    阅读次数:252
swift入门学习-与Objective-c的对比
在 Swift 中没有了 main.m,@UIApplicationMain 是程序入口 在 Swift 中只有 .swift 文件,没有 .h/.m 文件的区分 在 Swift 中,一个类就是用一对 {} 括起的,没有 @implementation 和 @end 每个语句的末尾没有分号,在其他语 ...
分类:编程语言   时间:2016-04-03 14:28:54    阅读次数:121
ImportError with IronPython in C#
I was using IronPython to execute python code inside my C# implementation lately, and I encountered this error when trying to use xmlrpclib: It was re ...
分类:编程语言   时间:2016-04-03 13:03:34    阅读次数:635
1803条   上一页 1 ... 62 63 64 65 66 ... 181 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!