Objective-c 创建类的使用
exchen 10年前 (2015-06-15) 5100浏览
以下是我写的一个实例, 测试Objective-c是如何使用类的 TestClass.h // // TestClass.h // TestClass // // Created by ...
exchen 10年前 (2015-06-15) 5100浏览
以下是我写的一个实例, 测试Objective-c是如何使用类的 TestClass.h // // TestClass.h // TestClass // // Created by ...
exchen 10年前 (2015-06-12) 5357浏览
字符串相加 stringByAppendingString //字符串相加 stringByAppendingString NSString *str1 = @"str1"; NSString *str2 =...
exchen 10年前 (2015-06-11) 4423浏览
网上很多资料说使用UltraISO打开macos10.8.5, 将InstallESD.dmg提取出来, 然后再用UltraISO打开InstallESD.dmg,点转换格式, 选择iso, 然后用vmware安装就行. 但是其中这样是不行的,转换过...
exchen 10年前 (2015-05-08) 4286浏览
在Objecttive-C里创建多线程一般有两种方法, 一种是initWithTarget,还有一种是detachNewThreadSelector。 下面是两个实例,创建多线程的实例,支持传递参数. initWithTarget方式 ...
exchen 10年前 (2015-05-05) 4530浏览
xcode中引入#include 提示错误是:"fstream"file not found. 将main.m的文件名改成main.mm就可以了 转载请注明:exchen's blog » xcode添加fstream类库...