将Objective-C代码拆分为多个文件
栏目: Objective-C · 发布时间: 5年前
内容简介:如果有人可以请参考一个有效的例子.翻译自:https://stackoverflow.com/questions/13357775/split-objective-c-code-into-multiple-files
如果有人可以请参考一个有效的例子.
在这种情况下,我认为您正在查看类别:
您所要做的就是在.h文件中创建一个新的.h .m对:
#import MyClass.h @interface MyClass(Networking) //method declarations here @end
并在.m文件中:
#import MyClass+Networking.h @implementation MyClass(Networking) //method definitions here @end
在MyClass.m文件中 – 执行#import MyClass Networking.h并完成所有设置.这样你就可以扩展你的课程.
翻译自:https://stackoverflow.com/questions/13357775/split-objective-c-code-into-multiple-files
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:- 如何将 .NetFramework WebApi 按业务拆分成多个模块
- iOS组件化拆分之业务与拆分并行开发
- html – 当我们拆分表时,如何将div拆分为两列?
- 微服务拆分之道
- 微服务的灾难-拆分
- 微服务的拆分与组件
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
The Little Schemer - 4th Edition
Daniel P. Friedman、Matthias Felleisen / The MIT Press / 1995-12-21 / USD 40.00
This delightful book leads you through the basic elements of programming in Scheme (a Lisp dialect) via a series of dialogues with well-chosen questions and exercises. Besides teaching Scheme, The Lit......一起来看看 《The Little Schemer - 4th Edition》 这本书的介绍吧!
Base64 编码/解码
Base64 编码/解码
SHA 加密
SHA 加密工具