TGTGInsightintelligence telegramLIVE / telegram public index
← Writing Way

TGINSIGHT SIMILAR POSTS

Trova contenuti simili

Canale sorgente @WritingWay · Post #1183 · 22 gen

DOMANDE E RISPOSTE ❓❓❓🧐 #scrittura#comunicazione DOMANDA❓ Quanto deve essere lungo l'incipit di un romanzo? 📕 RISPOSTA🤓 La questione è abbastanza dibattuta. Non c'è una lunghezza prestabilita, l'incipit è la prima scena di una narrazione. Ma possono essere anche le prime dieci righe o la prima frase di un testo. Non c'è una vera lunghezza definita a priori. Se vuoi approfondire questo argomento ti rimando a due articoli in cui ho trattato in modo approfondito il tema dell'incipit: ✅Come scrivere un incipit che funzioni davvero ✅Incipit di un libro: come lo valuta l'editore @writingway 🙌 Se pensi che questo post possa interessare ad altri, inoltralo cliccando sulla freccia a destra.

Risultati

2 post simili trovati

Cerca: #endif

当前筛选 #endif清除筛选
мобилки 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/