xib的使用

以我们想要使用xib创建一个CollectionView为例:

1.首先要删除ViewController.h,ViewController.m,以及StoryBoard,在Deployment Info里面将Main Interface清空。

2.此时运行程序,屏幕是黑色,也就是说当前没有显示的内容。我们创建一个UIViewController,之后在这个controller上面加上一个collection view以达到目的。

3.创建一个名为"CollectionViewController"的UIViewController,并且勾选创建相应的xib文件。

4.此时我们需要将CollectionViewController的内容显示出来。

在AppDelegate.h中:

#import 

@class CollectionViewController;

@interface AppDelegate : UIResponder 

@property (strong, nonatomic) UIWindow *window;
@property (strong, nonatomic) CollectionViewController *collectionVC;

@end

在AppDelegate.m中:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    
    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
    self.collectionVC = [[CollectionViewController alloc] initWithNibName:@"CollectionViewController" bundle:nil];
    self.window.rootViewController = self.collectionVC;
    [self.window makeKeyAndVisible];
    return YES;
}

我们设置collectionVC为self.window的rootViewController,此时在window中最先显示的就是collectionVC的view的内容。

运行程序,发现是一片空白。这是因为我们最先创建的是一个UIViewController,它的view就是白的。现在我们如果拖进来一个label,再运行程序,你会发现label出现在屏幕中了。

现在我们需要显示collection view。所以拖进来一个CollectionView。此时运行程序的话,发现屏幕又黑了。不用着急。因为CollectionView默认的backgroundColor就是黑色。现在通过control-drag,将CollectionView设置为CollectionViewController的一个outlet,命名为"collectionView"。现在我们的CollectionViewController来管理这个CollectionView了。设置CollectionViewController为collectionView的代理和数据源,并且实现数据源方法。

这里有一个小例子:

#import "CollectionViewController.h"

@interface CollectionViewController () 
@property (weak, nonatomic) IBOutlet UICollectionView *collectionView;

@property (nonatomic, strong) NSArray *colorsArray;

@end

@implementation CollectionViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view from its nib.
    [self.collectionView registerClass:[UICollectionViewCell class] forCellWithReuseIdentifier:@"Cell Identifier"];
    self.collectionView.backgroundColor = [UIColor clearColor];
    
    const int count = 100;
    NSMutableArray *tempArray = [[NSMutableArray alloc] initWithCapacity:count];
    for (int i = 0; i < count; i++) {
        CGFloat red = (arc4random()%255)/255.0f;
        CGFloat green = (arc4random()%255)/255.0f;
        CGFloat blue = (arc4random()%255)/255.0f;
        [tempArray addObject:[UIColor colorWithRed:red green:green blue:blue alpha:1.0f]];
    }
    self.colorsArray = [NSArray arrayWithArray:tempArray];
}

- (NSInteger)collectionView:(UICollectionView *)collectionView numberOfItemsInSection:(NSInteger)section
{
    return self.colorsArray.count;
}

- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
    UICollectionViewCell *cell = [self.collectionView dequeueReusableCellWithReuseIdentifier:@"Cell Identifier" forIndexPath:indexPath];
    cell.backgroundColor = self.colorsArray[indexPath.row];
    return cell;
}

@end

首先我们在self.collectionView里面注册UICollectionViewCell这个类,并且设置其identifier为"Cell Identifier"。这样在接下来的dequeueReusableCellWithReuseIdentifier的时候,就可以反复利用当前注册的这种cell。省去if(cell==nil){……}这种代码。在使用StoryBoard的时候并不需要像这样用代码来设置Cell的类型和identifier,因为在可视化界面我们已经设置好了,直接使用dequeueReusableCellWithReuseIdentifier来反复利用你在可视化界面设置好的相应的cell。

这里我之前因为不小心,在求red,green,blue的时候,不小心将255.0f写成了255,这样red,green,blue一直是0,所以在数组中每一个对象都是黑色,再加上collection本来就是黑色,那么加上之后还是黑色。之前我一直以为是在使用xib上出错,但是一直没有找出错来。。后来才知道collectionView本身就是黑色,再加上我在获得颜色时候的不小心,以后一定要注意。

这里还有一种情况,就是在创建CollectionViewController的时候,并没有勾选创建对应的xib。做法如下:

1.创建一个xib文件。

2.在xib文件中拖入相应类型的控件。如我们的CollectionViewController是UIViewController,那么我们将一个UIView拖入。

3.设置xib文件的File's Owner为CollectionViewController。

4.将拖入的view设置为CollectionViewController的view。(control-drag)

接下来的就和之前说的一样了。总结一句就是在开始没有创建xib,那么需要我们自己创建一个xib,按照上述步骤与CollectionViewController进行关联(注意类型要相对应),关联完成就与开始时直接创建xib一样了。开始时直接创建相对应的xib文件,相当于自动完成关联,省了我们的工作。


顺便记录一下:

我们在使用cell的时候使用的是系统默认的UITableViewCell/UICollectionCell,所以我们注册的时候:

[self.collectionView registerClass:[UICollectionViewCell class] forCellWithReuseIdentifier:@"Cell Identifier"];

但是很多时候系统自带的cell不能满足我们的需求。我们想通过xib创建一个cell,然后反复利用。

1.创建一个xib文件。拖入UICollectionViewCell,设置成想要的内容。

2.在CollectionViewController.m的viewDidLoad方法中注释掉[self.collectionView registerClass:[UICollectionViewCell class] forCellWithReuseIdentifier:@"Cell Identifier"];
因为我们不再想要用系统自带的cell了。而是加入下面两行代码:

UINib *cellNib = [UINib nibWithNibName:@"CustomCollectionCell" bundle:nil];
[self.collectionView registerNib:cellNib forCellWithReuseIdentifier:@"Cell Identifier"];

我们在创建collectionVC的时候,可以直接通过:

self.collectionVC = [[CollectionViewController alloc] initWithNibName:@"CollectionViewController" bundle:nil];

来直接将xib与ViewController相关联。现在我们创建的是一个Cell,不再是ViewController,所以需要另外的方法,即上述的方法,首先获得一个xib,接着在collectionView中注册这个xib(即cell),设置其identifier,以便重用。

如果现在运行程序的话,你会发现和之前没有变化,那是因为虽然我们注册了自定义的cell,但是还并没有用它。

所以我们需要创建一个cell类。

3.创建一个UICollectionViewCell,名字为"CustomCollectionViewCell"。将CustomCollectionCell.xib的Class设置为刚刚创建的CustomCollectionViewCell(类型要一致)。

现在界面上显示的就是我们自定义的cell了。

你可能感兴趣的:(xib的使用)