一級(jí)標(biāo)題
二級(jí)標(biāo)題
三級(jí)標(biāo)題
四級(jí)標(biāo)題
五級(jí)標(biāo)題
六級(jí)標(biāo)題
無(wú)序列表
- 文本1
- 文本2
有序列表
- 文本1
- 文本2
文本鏈接和圖片
- 插入鏈接
百度 -
插入圖片
引用
床前明月光啊鸭, 疑是地上霜点骑;
舉頭望明月, 低頭思故鄉(xiāng)指攒。
表格
dog | bird | cat |
---|---|---|
foo | foo | foo |
bar | bar | bar |
baz | baz | baz |
<p>這是一個(gè)普通段落:</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>