1.Abstract means that this class cannot be instantiated and used,it’s only useful as a superclass for other classes that are concrete. (04:00) 2.And I ...
分类:
移动开发 时间:
2016-05-23 21:15:10
阅读次数:
241
在使用Objective-C语言进行iOS应用开发的时候,常常会涉及到id、NSObject *、id、instancetype这四个概念的使用,但这四者也是iOS初学者最易混淆的内容,下面小编看了一些iOS开发教程和文档,搜罗了他们的不同用法,分享给大家,一起来看看吧。 1. id与NSObjec ...
分类:
移动开发 时间:
2016-05-23 10:30:58
阅读次数:
137
1.There is a class called NSNotificationCenter .It has a class method called defaultCenter.That returns a shared instance kind of like NSUserDefault,s ...
分类:
移动开发 时间:
2016-05-22 20:00:08
阅读次数:
241
1.All objects in an array are held onto strongly in the heap.So as long as that array itself is in the heap,as long as someone has a strong pointer to ...
分类:
移动开发 时间:
2016-05-20 22:19:19
阅读次数:
269
1.The difference is card.h is the public API.That’s what your dot h is.It’s your public API.It’s what methods in your class you want to make public so ...
分类:
移动开发 时间:
2016-05-14 18:43:44
阅读次数:
239
在iOS应用开发中我们常常要对视图的contentMode属性进行设置,尤其在使用UIImageView视图时设置这个属性的概率很高。我们知道contentMode的类型是UIViewContentMode的枚举,那么其每个值是什么含义,设置后会有什么效果呢?下面就来总结下。 UIViewConte ...
分类:
其他好文 时间:
2016-04-28 19:59:55
阅读次数:
203
LLDB是Xcode自带的调试器,作为一个iOS应用开发程序员,平时我在开发应用时会使用LLDB来调试代码。在逆向应用时,也会用到LLDB来跟踪应用的执行过程。 LLDB还内置了一个Python解析器,使用Python脚本可以方便LLDB的调试,比如自动化执行一些命令,或者自动化处理数据之类的,具体 ...
分类:
数据库 时间:
2016-04-26 00:36:27
阅读次数:
266
在iOS应用开发中,有三类视图对象会打开虚拟键盘,进行输入操作,但如何关闭虚拟键盘,却没有提供自动化的方法。这个需要我们自己去实现。这三类视图对象分别是UITextField,UITextView和UISearchBar。 这里介绍一下UITextField中关闭虚拟键盘的几种方法。 (miki西游 ...
分类:
移动开发 时间:
2016-04-09 23:19:18
阅读次数:
305
在iOS应用开发中,有三类视图对象会打开虚拟键盘,进行输入操作,但如何关闭虚拟键盘,却没有提供自动化的方法。这个需要我们自己去实现。这三类视图对象分别是UITextField,UITextView和UISearchBar。 这里介绍一下UITextField中关闭虚拟键盘的几种方法。 (miki西游 ...
分类:
移动开发 时间:
2016-04-08 09:00:08
阅读次数:
217