UIAlerVIew 管理模块
- 授权协议: MIT
- 开发语言: Objective-C
- 操作系统: iOS
- 软件首页: http://code4app.com/codesample/4fe972746803fad213000001
软件介绍
发一个项目当中管理UIAlerView,相当好用的模块。 可以无缝整合到当前项目中,不需要其他依赖。
在开发过程中遇见过这样的问题:
比如说 当前屏幕已有一个UIAlerView提示, 不希望其他的UIAlerView 提示覆盖, 而是等当前的UIAlerView提示处理完,在去显示其他的信息。
这里封装了一个 UIAlerView 管理器, 管理器是用队列实现的。 可以将自己的UIAlerView对象加入这个队列中,可以随意插入到队列任何位置。
并且支持用户 在压入 UIAlerView 的同时 ,绑定和UIAlerView相关的用户自己的数据。
可以一次传入一个数组, (多个UIAlerView) . 不会出现闪屏覆盖的现象。
按照先后顺序一次显示给用户。
管理器对外使用接口:
( AlertViewManager * ) sharedInstance ;
-( BOOL ) Registration : ( UIAlertView * ) aler ;
-( BOOL ) Registration : ( UIAlertView * ) aler UserObject : ( id ) userObject ;
-( BOOL ) RegistrationArray : ( NSArray * ) aler ;
-( BOOL ) RegistrationArray : ( NSArray * ) aler UserObject : ( NSArray * ) userObject ;
-( BOOL ) RemoveAler : ( UIAlertView * ) aler ;
-( BOOL ) RemoveUserObject : ( id ) userObject ;
-( BOOL ) RemoveAlerUserObjcet : ( UIAlertView * ) aler UserObject : ( id ) userObject ;
-( int ) InquiryAler : ( UIAlertView * ) aler ;
-( int ) InquiryUserObject : ( id ) userObject ;
-( int ) InquiryAlerUserObject : ( UIAlertView * ) aler UserObjcet : ( id ) userObjecet ;
-( BOOL ) InsertAler : ( UIAlertView * ) aler Index : ( int ) index ;
-( BOOL ) InsertAler : ( UIAlertView * ) aler UserObject : ( id ) userObjcet Index : ( int ) index ;
-( int ) GetPendingNumberOf ;
-( BOOL ) IsEmpty ;
[Code4App.com]
C语言算法速查手册
程晓旭、耿鲁静、张海、王勇 / 2009-10 / 49.00元
《C语言算法速查手册》用C语言编写了科研和工程中最常用的166个算法,这些算法包括复数运算、多项式的计算、矩阵运算、线性代数方程组的求解、非线性方程与方程组的求解、代数插值法、数值积分法、常微分方程(组)初值问题的求解、拟合与逼近、特殊函数、极值问题、随机数产生与统计描述、查找、排序、数学变换与滤波等。同时结合这些算法列举了将近100个应用实例,对其进行验证和分析。 《C语言算法速查手册》适......一起来看看 《C语言算法速查手册》 这本书的介绍吧!
