iOS 모듈화: 기본 프레임워크 생성
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
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.