TGTGInsightintelligence telegramLIVE / telegram public index
← Writing Way

TGINSIGHT SIMILAR POSTS

Trova contenuti simili

Canale sorgente @WritingWay · Post #1376 · 8 set

#02 DALLA BOZZA ALLA STESURA 🎬 La bozza, in particolare la prima, detta anche "bozza primitiva", ha la funzione di preparare la fase successiva della scrittura: la stesura. #scriverebene#scrittura#editing#editoria 🎧Nell'audio di oggi parliamo proprio di questo passaggio di evoluzione del testo. 📕Caratteristiche della prima bozza. 📕Fasi successive alla prima bozza: che cosa dobbiamo verificare? 📕 Problematiche del testo. 🔎 Un consiglio utile: lo trovate sempre (anche più di uno). @writingway 🙌 Se pensi che questo audio possa interessare ad altri, condividilo cliccando sulla freccia a destra.

Risultati

1 post simile trovati

Cerca: #elseif

当前筛选 #elseif清除筛选
мобилки at home

@apphomie · Post #100 · 13/03/2018, 09:00

Пока сообщество (точнее, хэйтеры) занято обсуждением метода toggle для Bool, в Swift 4.1 появились две директивы: canImport и targetEnvironment, предложенные Эрикой Садун. Попробовать их можно уже сейчас в Xcode 9.3 beta 4. Первая будет полезна для кроссплатформенных решений и позволяет определить, можно ли импортировать тот или иной модуль. #if canImport(UIKit) // UIKit-based code #elseif canImport(Cocoa) // OSX code #elseif // Workaround/text, whatever #endif Вторая директива с единственно возможным аргументом simulator позволяет выполнить условную компиляцию для симулятора или реального девайса. Теперь не нужно перечислять все любимые нам архитектуры и ОС (arch(i386) || arch(x86_64)) && (!os(macOS)), а достаточно будет этого: // Test for a simulator destination #if targetEnvironment(simulator) print("Simulator") #else print("Device") #endif http://ericasadun.com/2018/03/05/new-to-swift-in-xcode-9-3-beta-4-se-0075-and-se-0190-allow-better-configuration-testing/