You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 19, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: Library/UIKit/UICollectionView+ReuseIdentifierProtocol.swift
+4-4
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ public extension UICollectionView {
19
19
20
20
- returns: A subclass of UICollectionReusableView or nil if the cast fails.
21
21
*/
22
-
publicfunc dequeueReusableCell<Identifier:ReuseIdentifierType>(withReuseIdentifier identifier:Identifier, for indexPath:IndexPath)->Identifier.ReusableType?
22
+
func dequeueReusableCell<Identifier:ReuseIdentifierType>(withReuseIdentifier identifier:Identifier, for indexPath:IndexPath)->Identifier.ReusableType?
23
23
where Identifier.ReusableType:UICollectionReusableView
Copy file name to clipboardExpand all lines: Library/UIKit/UIStoryboard+StoryboardResource.swift
+1-1
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ public extension UIStoryboard {
17
17
18
18
- returns: A storyboard object for the specified file. If no storyboard resource file matching name exists, an exception is thrown with description: `Could not find a storyboard named 'XXXXXX' in bundle....`
Copy file name to clipboardExpand all lines: Library/UIKit/UIStoryboard+StoryboardViewControllerResource.swift
+1-1
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ public extension UIStoryboard {
18
18
19
19
- returns: The view controller corresponding to the specified resource (R.storyboard.*.*). If no view controller is associated, this method throws an exception.
Copy file name to clipboardExpand all lines: Library/UIKit/UITableView+ReuseIdentifierProtocol.swift
+5-5
Original file line number
Diff line number
Diff line change
@@ -21,14 +21,14 @@ public extension UITableView {
21
21
22
22
- precondition: You must register a class or nib file using the registerNib: or registerClass:forCellReuseIdentifier: method before calling this method.
23
23
*/
24
-
publicfunc dequeueReusableCell<Identifier:ReuseIdentifierType>(withIdentifier identifier:Identifier, for indexPath:IndexPath)->Identifier.ReusableType?
24
+
func dequeueReusableCell<Identifier:ReuseIdentifierType>(withIdentifier identifier:Identifier, for indexPath:IndexPath)->Identifier.ReusableType?
- returns: A UITableViewHeaderFooterView object with the associated identifier or nil if no such object exists in the reusable view queue or if it couldn't be cast correctly.
Copy file name to clipboardExpand all lines: Library/UIKit/UIViewController+StoryboardSegueIdentifierProtocol.swift
+2-2
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@ public extension SeguePerformerType {
23
23
- parameter sender: The object that you want to use to initiate the segue. This object is made available for informational purposes during the actual segue.
24
24
- SeeAlso: Library for typed block based segues: [tomlokhorst/SegueManager](https://github.com/tomlokhorst/SegueManager)
@@ -33,7 +33,7 @@ public extension StoryboardSegue where Source : UIViewController {
33
33
Performs this segue on the source view controller
34
34
- parameter sender: The object that you want to use to initiate the segue. This object is made available for informational purposes during the actual segue.
0 commit comments