iOS 모듈화: 기본 프레임워크 생성

7235 단어
프로젝트의 모듈화 프로세스를 위해 모듈화의 기초 구조를 정돈하였다.우선 우리가 이렇게 하는 장점을 말하자면 특히 많은 사람들이 개발할 때 이렇게 하는 것은 매우 편리하다. 그리고 코드가 깨끗하고 공사 안에 업무 코드만 있다. 그리고 업무 코드는 기능에 따라 모듈을 진행한다. 나는 아직 하지 않아서 프로젝트가 그리 필요하지 않다.주로 큰 공사에서 이런 장점이 더욱 크고 뚜렷하며 문제가 포지셔닝이 좋고 코드가 깨끗하고 결합이 잘 되는 동시에 당신의 추상적인 능력을 단련하세요.이번에 추상적으로 나온 프로젝트는'KZW Foundation'이라고 하는데 기초 컨트롤러의 통일된 스타일 봉인을 포함하고 기초 네트워크 프레임워크의 봉인(af 3.0에 대한 재봉인)은 암호화 검사,router,기초 controller,공통 컨트롤러 보기,기초 매크로,그리고 일부 기초 category의 봉인을 포함한다.다음은 자신의 코코스팟 라이브러리를 만드는 방법입니다. 1. 프로젝트를 만듭니다.
pod lib create KZWFoundation

2、공유하자:편집.podspec:
#
#  Be sure to run `pod spec lint KZWFoundation.podspec' to ensure this is a
#  valid spec and to remove all comments including this before submitting the spec.
#
#  To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html
#  To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#

Pod::Spec.new do |s|

 # ―――  Spec Metadata  ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
 #
 #  These will help people to find your library, and whilst it
 #  can feel like a chore to fill in it's definitely to your advantage. The
 #  summary should be tweet-length, and the description more in depth.
 #

 s.name         = "KZWFoundation"
 s.version      = "1.1.0"
 s.summary      = "iOS    "

 # This description is used to generate tags and improve search results.
 #   * Think: What does it do? Why did you write it? What is the focus?
 #   * Try to keep it short, snappy and to the point.
 #   * Write the description between the DESC delimiters below.
 #   * Finally, don't worry about the indent, CocoaPods strips it!
 s.description  = < "MIT", :file => "FILE_LICENSE" }


 # ――― Author Metadata  ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
 #
 #  Specify the authors of the library, with email addresses. Email addresses
 #  of the authors are extracted from the SCM log. E.g. $ git log. CocoaPods also
 #  accepts just a name if you'd rather not provide an email address.
 #
 #  Specify a social_media_url where others can refer to, for example a twitter
 #  profile URL.
 #

 s.author             = { "ouyang" => "[email protected]" }
 # Or just: s.author    = "ouyang"
 # s.authors            = { "ouyang" => "[email protected]" }
 # s.social_media_url   = "http://twitter.com/ouyang"

 # ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
 #
 #  If this Pod runs only on iOS or OS X, then specify the platform and
 #  the deployment target. You can optionally include the target after the platform.
 #

 # s.platform     = :ios
 s.platform     = :ios, "8.0"

 #  When using multiple platforms
 # s.ios.deployment_target = "5.0"
 # s.osx.deployment_target = "10.7"
 # s.watchos.deployment_target = "2.0"
 # s.tvos.deployment_target = "9.0"


 # ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
 #
 #  Specify the location from where the source should be retrieved.
 #  Supports git, hg, bzr, svn and HTTP.
 #

 s.source       = { :git => "https://github.com/ouyrp/KZWFoundation.git", :tag => "#{s.version}" }


 # ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
 #
 #  CocoaPods is smart about how it includes source code. For source files
 #  giving a folder will include any swift, h, m, mm, c & cpp files.
 #  For header files it will include any header in the folder.
 #  Not including the public_header_files will make all headers public.
 #

 s.source_files  = "Classes/KZWFoundationHear.h"

 s.subspec 'Content' do |ss|
   ss.source_files = 'Classes/**/*.{h,m}'
   ss.exclude_files = "Classes/KZWFoundationHear.h"
   ss.framework = "MapKit"
 end

 # s.public_header_files = "Classes/**/*.h"


 # ――― Resources ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
 #
 #  A list of resources included with the Pod. These are copied into the
 #  target bundle with a build phase script. Anything else will be cleaned.
 #  You can preserve files from being cleaned, please don't preserve
 #  non-essential files like tests, examples and documentation.
 #

 # s.resource  = "Classes/Rseouce/KZWFundation.bundle"
 # s.resource_bundle = "Classes/Rseouce/KZWFundation.bundle"
 s.resource_bundle = { 'KZWFundation' => ['Classes/Rseouce/KZWFundation.bundle'] }
 # s.resources = "Resources/*.png"

 # s.preserve_paths = "FilesToSave", "MoreFilesToSave"


 # ――― Project Linking ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
 #
 #  Link your library with frameworks, or libraries. Libraries do not include
 #  the lib prefix of their name.
 #
 # s.frameworks = "SomeFramework", "AnotherFramework"

 # s.library   = "iconv"
 # s.libraries = "iconv", "xml2"


 # ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
 #
 #  If your library depends on compiler flags you can set them in the xcconfig hash
 #  where they will only apply to your library. If you depend on other Podspecs
 #  you can include multiple dependencies to ensure it works.

 # s.requires_arc = true

 # s.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2" }
 s.dependency "Masonry"
 s.dependency "MJRefresh"
 s.dependency "AFNetworking"
 s.dependency "Mantle"
 s.dependency "MBProgressHUD"
 s.dependency "SAMKeychain"

end

여기서 중점적으로 말하자면, 만나는 구덩이, s.source이것은 당신이 공유하고자 하는 파일의 위치를 말합니다. 당신이 만든 후의 파일과 아무런 관계가 없습니다. s.subspec 이것이야말로 폴더를 만드는 것입니다. 만약 당신이 없으면 기본적으로 폴더가 없습니다. 파일은 모두 당신의 라이브러리 아래에 있습니다. 이렇게 하면 매우 못생기고 보기 싫습니다. 우아하지 않습니다. 그리고 s.subspec 이 안에도 코코스팟이 있기 때문에 당신이 사용하는 것을 모두 추가해야 합니다. 그리고 자원 파일을 말씀드리겠습니다.우리는 모두 우아한 사람들이기 때문에 각종 png 파일을 잃어버리면 안 된다. 그래서 우리는 bundle을 만들고 s.resource 를 설정해야 한다.bundle = {'KZWFundation'=> ['Classes/Rseouce/KZWFundation.bundle']} 이것은 오후 내내 저를 낭비합니다. 그래서 여러분들은 다른 비교적 큰 라이브러리가 어떻게 조립되었는지 보셔야 합니다.3. 그 다음은 검증
pod lib lint KZWFoundation.podspec --verbose --use-libraries --allow-warnings

이것은 로컬을 검증하는 것이다. 가장 좋은 것은 먼저 이것을 뛰어내리는 것이다. 문제가 없으면 제출한 다음에 원거리를 검증하는 것이다. 처음에 나는 이렇게 하지 않았다. 하루에 10개의 버전을 제출했는데 내가 어리석어 죽었다.4, 제출
git add -A && git commit -m "version 1.0.0"

git tag '1.0.0'    //   .podspec  

git push --tags

git push origin master

5. 원격의
pod spec lint KZWFoundation.podspec --verbose --use-libraries --allow-warnings

6、문제 없이 제출
pod trunk register *****@xx.com "ouyang"
pod trunk push KZWFoundation.podspec  --use-libraries --allow-warnings

만약에 트렁크가 등록을 했으면 등록을 건너뛰고 바로 미룰 수 있었으면 좋겠어요. 성공하면 친구에게 알려줄 거예요. 그러면 완성됐어요. 그리고 당신은pod를 내려올 수 있어요. 완벽해요.그리고 네가 고치고 있으면 버전을 올려야 해. 버전을 한 번 바꿔야 해.7. 이번 공유는 끝났습니다. 저의 기초 PR을 사용해서 저를 더욱 완벽하게 해 주셔서 감사합니다.github 주소:https://github.com/ouyrp/KZWFoundation

좋은 웹페이지 즐겨찾기