我已经使用
在我的网站上成功嵌入了我的Tumblr博客(...).dynamicType
我还设法使用
设置CSS中帖子的正文/内容的样式/* .Some case (non-nil) */
foo?.bar // true
(foo?.bar).dynamicType /* Optional<Bool>.Type <-- as if (...)
is a _variable_ of unknown value */
/* .None case (nil) */
foo = nil
(foo?.bar).dynamicType /* Optional<Bool>.Type <-- as if (...)
is a _variable_ of unknown value */
现在我想更改每个帖子标题的样式以使这些更加粗体,即我尝试使用dynamicType
在CSS文件中使用另一个var a = 4 // shows '4'
(a = 2) // shows nothing; can't expand or get details in sidebar
来实现此功能,但这不起作用。你们有任何解决方案吗?
干杯