采用现代Objective-C
- @interface MyObject : NSObject
- + (instancetype)factoryMethodA;
- + (id)factoryMethodB;
- @end
- @implementation MyObject
- + (instancetype)factoryMethodA
- {
- return [[[self class] alloc] init];
- }
- + (id)factoryMethodB
- {
- return [[[self class] alloc] init];
- }
- @end
- void doSomething()
- {
- NSUinteger x, y;
- // Return type of +factoryMethodA is taken to be "MyObject *"
- x = [[MyObject factoryMethodA] count];
- // Return type fo +factoryMethodB is "id"
- y = [[MyObject factoryMethodB] count];
- }
- main.m: 'MyObject' may not respond to 'count'
- @interface MyObjectSubclass : MyObject
- @end
- void doSomethingElse()
- {
- NSString *aString = [MyObjectSubclass factoryMethodA];
- }
- main.m: Incompatible pointer types initializing 'NSString *'
- with an expression of type 'MyObjectSubclass *'
- @interface MyObject
- - (id)myFactoryMethod;
- @end
- @interface MyObject
- - (instancetype)myFactoryMethod;
- @end
- @property (readonly, getter=isBlue) BOOL blue;
- @property (readonly, getter=isBlue) BOOL blue;
- if(color.blue){}
- if(color.isBlue){}
- if([color isBlue]){}
- - (NSColor *)backgroundColor;
- - (void)setBackgroundColor:(NSColor *)color;
- @property (copy) NSColor *backgroundColor;
- typedef NS_ENUM(NSInteger, UITableViewCellStyle){
- UITableViewCellStyleDefault,
- UITableViewCellStyleValue1,
- UITableViewCellStyleValue2,
- UITableViewCellStyleSubtitle
- }
- typedef NS_OPTIONS(NSUInteger, UIViewAutoresizeing){
- UIViewAutoresizeingNone = 0,
- UIViewAutoresizeingFlexibleLeftMargin = 1 << 0,
- UIViewAutoresizeingFlexibleWidth = 1 << 1,
- UIViewAutoresizeingFlexibleRightMargin = 1 << 2,
- UIViewAutoresizeingFlexibleTopMargin = 1 << 3,
- UIViewAutoresizeingFlexibleHeight = 1 << 4,
- UIViewAutoresizeingFlexibleBottomMargin = 1 << 5
- }
- enum{
- UITableViewCellStyleDefault,
- UITableViewCellStyleValue1,
- UITableViewCellStyleValue2,
- UITableViewCellStyleSubtitle
- };
- typedef NSInteger UITableViewCellStyle;
- typedef NS_ENUM(NSInteger, UITableViewCellStyle){
- UITableViewCellStyleDefault,
- UITableViewCellStyleValue1,
- UITableViewCellStyleValue2,
- UITableViewCellStyleSubtitle
- }
- enum {
- UIViewAutoresizeingNone = 0,
- UIViewAutoresizeingFlexibleLeftMargin = 1 << 0,
- UIViewAutoresizeingFlexibleWidth = 1 << 1,
- UIViewAutoresizeingFlexibleRightMargin = 1 << 2,
- UIViewAutoresizeingFlexibleTopMargin = 1 << 3,
- UIViewAutoresizeingFlexibleHeight = 1 << 4,
- UIViewAutoresizeingFlexibleBottomMargin = 1 << 5
- };
- typedef NSUInteger UIViewAutoresizing;
- typedef NS_OPTIONS(NSUInteger, UIViewAutoresizeing){
- UIViewAutoresizeingNone = 0,
- UIViewAutoresizeingFlexibleLeftMargin = 1 << 0,
- UIViewAutoresizeingFlexibleWidth = 1 << 1,
- UIViewAutoresizeingFlexibleRightMargin = 1 << 2,
- UIViewAutoresizeingFlexibleTopMargin = 1 << 3,
- UIViewAutoresizeingFlexibleHeight = 1 << 4,
- UIViewAutoresizeingFlexibleBottomMargin = 1 << 5
- }
采用现代Objective-C的更多相关文章
- 【转】从Go、Swift语言出发
Google于2009年第一次提出了Go的构思,Facebook在去年春天引入了Hack,随后不久Apple也发布了其Swift语言. 在战争中,胜利者写历史书:在科技中,赢的公司都在写编程语言.互联 ...
- 从Go、Swift出发:语言的选择需谨慎
本文转自 : http://www.csdn.net/article/2014-12-09/2823025 摘要:无论是开源的Go,还是闭源的Swift,新的语言总是利弊一体.不过可以确定的是,新的语 ...
- Automake
Automake是用来根据Makefile.am生成Makefile.in的工具 标准Makefile目标 'make all' Build programs, libraries, document ...
- 浅谈Objective—C中的面向对象特性
Objective-C世界中的面向对象程序设计 面向对象称程序设计可能是现在最常用的程序设计模式.如何开发实际的程序是存在两个派系的-- 面向对象语言--在过去的几十年中,很多的面向对象语言被发明出来 ...
- iOS开发——技术精华Swift篇&Swift 2.0和Objective-C2.0混编之第三方框架的使用
swift 语言是苹果公司在2014年的WWDC大会上发布的全新的编程语言.Swift语言继承了C语言以及Objective-C的特性,且克服了C语言的兼容性问题.Swift语言采用安全编程模式,且引 ...
- 第一章 熟悉Objective -C 编写高质量iOS与OS X代码的52 个有效方法
第一章 熟悉Objective -C 编写高质量iOS与OS X代码的52 个有效方法 第一条: 了解Objective-C 语言的起源 关键区别在于 :使用消息结构的语言,其运行时所应执行 ...
- 论文翻译:2020_FLGCNN: A novel fully convolutional neural network for end-to-end monaural speech enhancement with utterance-based objective functions
论文地址:FLGCNN:一种新颖的全卷积神经网络,用于基于话语的目标函数的端到端单耳语音增强 论文代码:https://github.com/LXP-Never/FLGCCRN(非官方复现) 引用格式 ...
- 采用MiniProfiler监控EF与.NET MVC项目(Entity Framework 延伸系列1)
前言 Entity Framework 延伸系列目录 今天来说说EF与MVC项目的性能检测和监控 首先,先介绍一下今天我们使用的工具吧. MiniProfiler~ 这个东西的介绍如下: MVC Mi ...
- 采用EntityFramework.Extended 对EF进行扩展(Entity Framework 延伸系列2)
前言 Entity Framework 延伸系列目录 今天我们来讲讲EntityFramework.Extended 首先科普一下这个EntityFramework.Extended是什么,如下: 这 ...
随机推荐
- linux下的共享库(动态库)和静态库
1.什么是库在windows平台和linux平台下都大量存在着库.本质上来说库是一种可执行代码的二进制形式,可以被操作系统载入内存执行.由于windows和linux的本质不同,因此二者库的二进制是不 ...
- 07-语言入门-07-A Famous Music Composer
题目地址: http://blog.csdn.net/sevenmit/article/details/8231994 描述 Mr. B is a famous music composer. On ...
- sh.exe": grunt: command not found
今天在git命令行工具中使用 grunt的时候,总是提示我找不到grunt命令,如: sh.exe": grunt: command not found 但是我运行 npm install ...
- 1709. Penguin-Avia(并查集)
1709 简单题 并查集找下就行 #include <iostream> #include<cstdio> #include<cstring> #include&l ...
- hdu 3359 Kind of a Blur (高斯消元 浮点型)
题目链接 题意: H * W (W,H <= 10) 的矩阵A的某个元素A[i][j],从它出发到其他点的曼哈顿距离小于等于D的所有值的和S[i][j]除上可达点的数目,构成了矩阵B.给定矩阵B ...
- java.lang.ClassNotFoundException: org.hibernate.annotations.common.reflection.MetadataProvider
Caused by: java.lang.NoClassDefFoundError: org/hibernate/annotations/common/reflection/MetadataProvi ...
- Bitset小结 (POJ2443 & HDU4920)
学了下bitset用法,从网上找的一些bitset用法,并从中调出一些常用的用法. 构造函数bitset<n> b; b有n位,每位都为0.参数n可以为一个表达式.如bitset<5 ...
- 一位ACM过来人的心得(转)
励志下! 刻苦的训练我打算最后稍微提一下.主要说后者:什么是有效地训练? 我想说下我的理解.很多ACMer入门的时候,都被告知:要多做题,做个500多道就变牛了.其实,这既不是充分条件.也不会是必要条 ...
- 玩转EasyUi弹出框
这两天在搞EasyUi的弹出框,弹出框之前也搞过很多个版本,总是觉得不那么完美,刚好最近有时间,就往多处想了想,功能基本上达到我的预期,并且在开发过程中遇到很多小技巧,特撰文如下. 走起:在EasyU ...
- Web Api 接口文档制作
参考地址: http://blogs.msdn.com/b/yaohuang1/archive/2012/05/21/asp-net-web-api-generating-a-web-api-help ...