Skip to content

Instantly share code, notes, and snippets.

import UIKit
struct tvcmodel:Codable {
let smileSad = "🥺"
let smileHappy = "😀"
let num: Int
}
class ViewController: UIViewController, UITableViewDelegate, UITableViewDataSource {
@Lomiren
Lomiren / Podfile
Last active September 26, 2023 10:16
Inhibit warnings developer pods iOS
# 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