Skip to content

Commit aaaa47a

Browse files
committed
Firebase Storage Update
Change-Id: I0afe1113ba9e0899076e7b8b92002e950e23bc7d
1 parent 60380e0 commit aaaa47a

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

FirebaseStorageUI/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,22 @@
22

33
## Using FirebaseUI to download and display images
44

5-
[Firebase Storage][firebase-storage] provides secure file uploads and downloads for your Firebase apps,
5+
[Cloud Storage for Firebase][firebase-storage] provides secure file uploads and downloads for your Firebase apps,
66
regardless of network quality. You can use it to store images, audio, video, or other
7-
user-generated content. Firebase Storage is backed by Google Cloud Storage, a powerful, simple,
7+
user-generated content. Cloud Storage is a powerful, simple,
88
and cost-effective object storage service.
99

10-
FirebaseUI provides bindings to download an image file stored in Firebase Storage
10+
FirebaseUI provides bindings to download an image file stored in Cloud Storage
1111
from a [`FIRStorageReference`][storage-reference] and display it using the popular
1212
[SDWebImage][sdwebimage] library. This technique allows you to get all of SDWebImage's performance
13-
benefits while leveraging Firebase Storage's authenticated storage capabilities.
13+
benefits while leveraging Cloud Storage's authenticated storage capabilities.
1414

1515
To load an image from a `FIRStorageReference`, simply use the `UIImageView+FirebaseStorage` extensions:
1616

1717
```objective-c
1818
// Objective-C
1919

20-
// Reference to an image file in Firebase Storage
20+
// Reference to an image file in Cloud Storage
2121
FIRStorageReference *reference = ...;
2222

2323
// UIImageView in your ViewController
@@ -30,7 +30,7 @@ UIImageView *imageView = ...;
3030
```swift
3131
// Swift
3232
33-
// Reference to an image file in Firebase Storage
33+
// Reference to an image file in Cloud Storage
3434
let reference: FIRStorageReference = ...;
3535
3636
// UIImageView in your ViewController
@@ -40,7 +40,7 @@ var imageView: UIImageView = ...;
4040
imageView.sd_setImageWithStorageReference(reference, placeholderImage: placeholderImage)
4141
```
4242

43-
Images are cached by their path in Firebase Storage, so repeated loads will be
43+
Images are cached by their path in Cloud Storage, so repeated loads will be
4444
fast and conserve bandwidth. For more information on caching in SDWebImage,
4545
see [this guide][sdwebimage-caching].
4646

samples/swift/FirebaseUI-demo-swift/Base.lproj/Main.storyboard

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -463,7 +463,7 @@
463463
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Ysn-Q8-QfG">
464464
<rect key="frame" x="0.0" y="605" width="375" height="62"/>
465465
<subviews>
466-
<textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" borderStyle="roundedRect" placeholder="Path to an image in Firebase Storage" textAlignment="natural" minimumFontSize="17" clearButtonMode="whileEditing" translatesAutoresizingMaskIntoConstraints="NO" id="jfb-IE-aYb">
466+
<textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" borderStyle="roundedRect" placeholder="Path to an image in Cloud Storage" textAlignment="natural" minimumFontSize="17" clearButtonMode="whileEditing" translatesAutoresizingMaskIntoConstraints="NO" id="jfb-IE-aYb">
467467
<rect key="frame" x="8" y="8" width="309" height="46"/>
468468
<fontDescription key="fontDescription" type="system" pointSize="14"/>
469469
<textInputTraits key="textInputTraits" returnKeyType="done"/>

0 commit comments

Comments
 (0)