摘要:
写一个我们自己的类继承UICollectionViewFlowLayout。然后需要实现四个方法 -(CGSize)collectionViewContentSize { CGFloat height= ceil([[self collectionView] numberOfItemsInSecti 阅读全文
摘要:
如题,现在我是这样做的 其中,_deviceView是一个tableView,不论A是否加上,表格的分隔线都会比表格宽度宽上一些(左右两边都冒出一些),而B中,无论我将括号里的4个数字怎么修改,也不能改变显示的情况 阅读全文
摘要:
1. 概述 有时被称作发布/订阅模式,观察者模式定义了一种一对多的依赖关系,让多个观察者对象同时监听某一个主题对象。这个主题对象在状态发生变化时,会通知所有观察者对象,使它们能够自动更新自己。 2. 解决的问题 将一个系统分割成一个一些类相互协作的类有一个不好的副作用,那就是需要维护相关对象间的一致 阅读全文
摘要:
//1.去掉空格及特殊字符 trim函数 //$str='asdf ghjkl\t'; //echo($str);//trim 去掉两端空格 //echo(trim($str));//echo('test'); //移除两端指定的字符 as 和 \t//echo(trim($str,'as\t')) 阅读全文
摘要:
BBFlashCtntLabel文件 #import <UIKit/UIKit.h> typedef NS_ENUM(NSInteger, BBFlashCtntSpeed) { BBFlashCtntSpeedSlow = -1, BBFlashCtntSpeedMild, BBFlashCtnt 阅读全文
摘要:
1.先导入GDataXML包 导入包的时候一定要选择 copy items if needed , create groups,跟文件名三项。 2. 选择Build Settings 在左上角选择All Levels 输入other搜索 找到 other Linker Flags 双击空白处 点击左 阅读全文
摘要:
.m文件 //获取文件访问路径 NSString *path=@"http://1.studyios.sinaapp.com/getAllClass.php"; //封装URL NSURL *url=[NSURL URLWithString:path]; //创建请求命令 NSURLRequest 阅读全文
摘要:
activityView = [[UIActivityIndicatorView alloc] initWithFrame:CGRectMake(100.0f, 0.0f, 10.0f, 10.0f)]; activityView.activityIndicatorViewStyle = UIAct 阅读全文
摘要:
--创建数据库 create database ios --使用数据库 use ios --创建数据表 create table student ( stuid int primary key autoincrement, stuname varchar(20), stupwd varchar(20 阅读全文
摘要:
首先创建一个自定义的类 #import <Foundation/Foundation.h> @interface Student : NSObject //定义学生类型的几个属性 @property(strong,nonatomic)NSString *name; @property(assign, 阅读全文