Skip to content

Commit a6b0165

Browse files
committed
0.2.0 release candidate:
+ FirebaseCollectionViewDataSource + Nullability annotations and improved swift support + Documentation!
1 parent 35bfe1a commit a6b0165

File tree

1 file changed

+14
-3
lines changed

1 file changed

+14
-3
lines changed

README.md

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,20 @@ account](https://www.firebase.com/signup/?utm_source=firebaseui-ios).
3232

3333
## FirebaseUI for iOS Quickstart
3434

35-
This is a quickstart on how to use FirebaseUI's core features to speed up iOS development with Firebase.
35+
This is a quickstart on how to use FirebaseUI's core features to speed up iOS development with Firebase. FirebaseUI includes the following features:
36+
37+
Class | Description
38+
------------- | -------------
39+
FirebaseTableViewDataSource | Data source to bind a Firebase query to a UITableView
40+
FirebaseCollectionViewDataSource | Data source to bind a Firebase query to a UICollectionView
41+
FirebaseArray | Keeps an array synchronized to a Firebase query
42+
FirebaseDataSource | Generic superclass to create a custom data source
43+
44+
For a more in-depth explanation of each of the above, check the usage instructions below:
3645

3746
### FirebaseTableViewDataSource
3847

39-
FirebaseTableViewDataSource implements the UITableViewDataSource protocol to automatically use Firebase as a DataSource for your UITableView.
48+
`FirebaseTableViewDataSource` implements the `UITableViewDataSource` protocol to automatically use Firebase as a data source for your `UITableView`.
4049

4150
#### Objective-C
4251
```objective-c
@@ -82,7 +91,7 @@ self.tableView.dataSource = self.dataSource
8291

8392
### FirebaseCollectionViewDataSource
8493

85-
FirebaseCollectionViewDataSource implements the UICollectionViewDataSource protocol to automatically use Firebase as a DataSource for your UICollectionView.
94+
`FirebaseCollectionViewDataSource` implements the `UICollectionViewDataSource` protocol to automatically use Firebase as a data source for your `UICollectionView`.
8695

8796
#### Objective-C
8897
```objective-c
@@ -323,6 +332,8 @@ $ cd FirebaseUI-iOS
323332
$ ./setup.sh
324333
```
325334

335+
FirebaseUI makes use of XCode 7 features such as lightweight generics and `__kindof` annotations, so please ensure you're using the latest version of XCode beta for development.
336+
326337
## Deployment
327338

328339
- `git pull` to update the master branch

0 commit comments

Comments
 (0)