mirror of https://github.com/oxen-io/session-ios
				
				
				
			
			You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			28 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Swift
		
	
			
		
		
	
	
			28 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Swift
		
	
// Copyright © 2022 Rangeproof Pty Ltd. All rights reserved.
 | 
						|
 | 
						|
import UIKit
 | 
						|
 | 
						|
public extension UITableView {
 | 
						|
    func register<View>(view: View.Type) where View: UITableViewCell {
 | 
						|
        register(view.self, forCellReuseIdentifier: view.defaultReuseIdentifier)
 | 
						|
    }
 | 
						|
 | 
						|
    func registerHeaderFooterView<View>(view: View.Type) where View: UITableViewHeaderFooterView {
 | 
						|
        register(view.self, forHeaderFooterViewReuseIdentifier: view.defaultReuseIdentifier)
 | 
						|
    }
 | 
						|
 | 
						|
    func dequeue<T>(type: T.Type, for indexPath: IndexPath) -> T where T: UITableViewCell {
 | 
						|
        // Note: We need to use `type.defaultReuseIdentifier` rather than `T.defaultReuseIdentifier`
 | 
						|
        // otherwise we may get a subclass rather than the actual type we specified
 | 
						|
        let reuseIdentifier = type.defaultReuseIdentifier
 | 
						|
        return dequeueReusableCell(withIdentifier: reuseIdentifier, for: indexPath) as! T
 | 
						|
    }
 | 
						|
 | 
						|
    func dequeueHeaderFooterView<T>(type: T.Type) -> T where T: UITableViewHeaderFooterView {
 | 
						|
        // Note: We need to use `type.defaultReuseIdentifier` rather than `T.defaultReuseIdentifier`
 | 
						|
        // otherwise we may get a subclass rather than the actual type we specified
 | 
						|
        let reuseIdentifier = type.defaultReuseIdentifier
 | 
						|
        return dequeueReusableHeaderFooterView(withIdentifier: reuseIdentifier) as! T
 | 
						|
    }
 | 
						|
}
 |