一级标题
二级标题
三级标题
四级标题
五级标题
六级标题
无序列表
- 文本1
- 文本2
有序列表
- 文本1
- 文本2
文本链接和图片
- 插入链接
百度 -
插入图片
引用
床前明月光, 疑是地上霜;
举头望明月, 低头思故乡。
表格
dog | bird | cat |
---|---|---|
foo | foo | foo |
bar | bar | bar |
baz | baz | baz |
<p>这是一个普通段落:</p>
<pre><code>
-(UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath {
static NSString *identify = @"collecitonViewCellIdentify";
DYDeviceCollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:identify forIndexPath:indexPath];
[cell sizeToFit];
cell.dataDic = self.dataArray[indexPath.row];
return cell;
}
</code></pre>