Skip to content

Instantly share code, notes, and snippets.

@V-FEXrt
Created October 11, 2017 15:41
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save V-FEXrt/87367a1dbb4485b7907c2eca849ad76b to your computer and use it in GitHub Desktop.
Save V-FEXrt/87367a1dbb4485b7907c2eca849ad76b to your computer and use it in GitHub Desktop.
import UIKit
import ImageRow
import Eureka
class CustomImagePickerController: ImagePickerController {
override var preferredStatusBarStyle: UIStatusBarStyle {
return .default // For dark status bar
//return .lightContent // For light status bar
}
}
final class CustomImageRow: _ImageRow<CustomImagePickerController, ImageCell>, RowType {
public required init(tag: String?) {
super.init(tag: tag)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment