关键字 objective 的文章


由   YIem   撰写于    浏览:8518  评论:0
iOS开发#使用Pods中使用Swift和Objective-C混编-编译不通过的原因-ld: symbol(s) not found for architecture arm64问题基本描述 在Pods管理的Objective-C中导入Swift过程中出现问题项目中需要展示报表,而使用的第三方(Charts)是Swift编写的,而我的项目中使用的[...]

由   YIem   撰写于    浏览:7323  评论:0
昨天发布的最新Xcode版本9.4Beta增加了对ClassKit的支持ClassKit 开发文档About Xcode 9.4 betaSupported ConfigurationsXcode 9.4 beta requires a Mac running macOS 10.13.2 or later.SDK VersionsXcode 9.4[...]

由   YIem   撰写于    浏览:8150  评论:0
今天更新了Xcode 9.3 macOS 10.13.4Xcode ideworkspacechecks.plist文件Project 'iOS-SS' Enable recommended warnings This will enael the following recommended warnings implicit retain of[...]

由   YIem   撰写于    浏览:4534  评论:0
Objective-C 给字符串MD5加密引入 #import <CommonCrypto/CommonCrypto.h> 文件 const char *cStr = [str UTF8String]; unsigned char result[16]; CC_MD5(cStr,(CC_LONG)strle[...]

由   YIem   撰写于    浏览:14389  评论:0
https://segmentfault.com/a/1190000009272638 | 掘金技术征文第一期 - 收藏集 - 掘金 - 掘金精选 - SegmentFaulthttps://juejin.im/post/583e62d0a22b9d006a986410 | 一位 iOS 开发者的前端入门到入职 | 掘金技术征文 - 掘金https[...]

由   YIem   撰写于    浏览:7542  评论:0
https://blog.ni-co.moe/ | 矢澤にこhttp://www.jianshu.com/p/515602a329c7 | iOS--《传值方法》之通知中心传值 - 简书http://www.jianshu.com/p/1ff9e44ccc78 | 多年iOS开发经验总结(一) - 简书http://www.cnblogs.com/[...]

由   YIem   撰写于    浏览:2515  评论:0
9 月编程语言排行榜-Python大法好!我大Objective-C Swift 也有抬头趋势- PS:苹果发布新品了。。

由   YIem   撰写于    浏览:3644  评论:0
嗯,上午睡觉,然后下午的时候在Vps里面安装的lnmp,在安装过程中,去了果园中给苹果带果套,晚上回来lnmp安装完事,吃完饭新建站点,新建的一个iOS开发的独立站点,以后的iOS方面的到会写在iOS.yiem.net中,会回顾一下从C到Objective-C-到Swift,从入门到上线的全过程!

由   YIem   撰写于    浏览:4711  评论:0
Objective-C考试- 蓝鸥3G-OC考试题 ※ 选择题(共40题,每题2分) 1、NSString *str = @“lanou”; [str retain]; [str autorelease];
此时str的引用计数是________。 答案:(D) A、0 B、1 C、2 D、以上[...]

由   YIem   撰写于    浏览:3075  评论:0
iOS 判断Objective-C 字符串是否已i开头 you结尾 NSString *str = [NSString stringWithFormat:@"i Love you"]; [str hasPrefix:@"i"] && [str hasSuffix:@"you&[...]

由   YIem   撰写于    浏览:6662  评论:0
OC 综合思维导图点击进入 PDF文件

由   YIem   撰写于    浏览:4032  评论:0
Objective-C(新)Objective-C考试 ※ 选择题(共80题,每题1分)1、不会立刻使引用计数器改变的是:答案:(C) A、release B、alloc C、autorelease D、retain2、OC中布尔(BOOL)类型的变量的值只有:答案:(B) A、1/0 B、YES/NO C、true/false D、1/-13[...]

由   YIem   撰写于    浏览:2952  评论:0
//// main.m// OC_内存管理//// Created by YIem on 15/12/3.// Copyright (c) 2015年 www.yiem.net YIem博客. All rights reserved.//import <Foundation/Foundation.h>import "Person[...]

由   YIem   撰写于    浏览:3354  评论:0
//// main.m// OC_7遍历//// Created by YIem on 15/12/2.// Copyright (c) 2015年 www.yiem.net YIem博客. All rights reserved.//import <Foundation/Foundation.h>import "Model.h[...]

由   YIem   撰写于    浏览:4750  评论:0
//// main.m// OC6_省市区//// Created by YIem on 15/12/1.// Copyright (c) 2015年 www.yiem.net YIem博客. All rights reserved.//import <Foundation/Foundation.h>import "Model.[...]

由   YIem   撰写于    浏览:3728  评论:0
//// main.m// OC6_练习//// Created by YIem. on 12/1/15.// Copyright (c) 2015 www.yiem.net YIem博客. All rights reserved.//import <Foundation/Foundation.h>import "Book.h"[...]

由   YIem   撰写于    浏览:3203  评论:0
//// main.m// OC5_NSNumber_NSValue//// Created by YIem. on 11/30/15.// Copyright (c) 2015 www.yiem.net YIem博客. All rights reserved.//import <Foundation/Foundation.h>[...]

由   YIem   撰写于    浏览:3489  评论:0
//// main.m// OC5_数组_字典//// Created by YIem. on 11/30/15.// Copyright (c) 2015 www.yiem.net YIem博客. All rights reserved.//import <Foundation/Foundation.h>int main(in[...]

由   YIem   撰写于    浏览:3278  评论:0
//// main.m// OC_4数组//// Created by YIem on 15/11/27.// Copyright (c) 2015年 www.yiem.net YIem博客. All rights reserved.//import <Foundation/Foundation.h>int main(int a[...]

由   YIem   撰写于    浏览:5032  评论:0
//// main.m// OC_4NSString//// Created by YIem on 15/11/27.// Copyright (c) 2015年 www.yiem.net YIem博客. All rights reserved.//import <Foundation/Foundation.h>int main[...]

由   YIem   撰写于    浏览:2893  评论:0
//// main.m// OC_3属性//// Created by YIem on 15/11/26.// Copyright (c) 2015年 www.yiem.net YIem博客. All rights reserved.//import <Foundation/Foundation.h>import "Studen[...]

由   YIem   撰写于    浏览:3968  评论:0
//// main.m// OC_NO.1//// Created by YIem on 15/11/24.// Copyright (c) 2015年 www.yiem.net YIem博客. All rights reserved.//import <Foundation/Foundation.h>import "Car_1[...]

由   YIem   撰写于    浏览:2976  评论:0
//// main.m// OC_2初始化_便利构造器//// Created by YIem on 15/11/25.// Copyright (c) 2015年 www.yiem.net YIem博客. All rights reserved.//import <Foundation/Foundation.h>import [...]

由   YIem   撰写于    浏览:4301  评论:0
//// main.m// OC_2方法//// Created by YIem on 15/11/25.// Copyright (c) 2015年 www.yiem.net YIem博客. All rights reserved.//import <Foundation/Foundation.h>import "Person[...]