This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# inhibit_all_warnings! | |
# If you enable inhibit_all_warnings, we will not see warnings from our developer Pods. | |
# inhibit_all_warnings Оключает отображение warning во всех подключенных Pods. И мы не видим предупреждение в наших developer Pods | |
# Solution: Disable warning only for third party Pods | |
# Решение: Отключить показ warning только для сторонних подов | |
# Solution: for custom pods https://stackoverflow.com/a/44530816 | |
# Решение: для выборочного отключения https://stackoverflow.com/a/44530816 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import UIKit | |
struct tvcmodel:Codable { | |
let smileSad = "🥺" | |
let smileHappy = "😀" | |
let num: Int | |
} | |
class ViewController: UIViewController, UITableViewDelegate, UITableViewDataSource { | |