我需要将哪个文件导入到我的项目中?如果我只是导入“Masonry”文件夹,它似乎不起作用。我是否需要导入其他库?
答案 0 :(得分:2)
git clone https://github.com/desandro/masonry.git
在xcode中打开项目,右键单击并将文件添加到项目中。
与#import "Masonry.h"
一起使用。
答案 1 :(得分:1)
答案 2 :(得分:0)
也许使用CoacoaPods是一个好主意。如果您使用terminal
,通过sudo gem install cocoapods
安装非常方便
1.安装Ruby
2.在终端中输入cd /your project path(where you .xcodeproj in it)
3.创建一个新项目并输入vim Podfile
4.enter pod 'Masonry'
5.使用vim写下esc
6.按:wq
并输入pod install
7.enter *.xcworkspace
8.打开Masonry.h
并导入string[][] s2d = new string[][] {
new string[] {"val1","val2"},
new string[] {"val1bis","val2bis"}
};
总而言之,CocoaPos是一个很好的导入框架的工具。