Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
C
cocoapods
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gengmeiios
cocoapods
Commits
4508097f
Commit
4508097f
authored
Feb 15, 2018
by
Samuel Giddins
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add a private header to the Modules example ObjCPod
parent
03e6ad62
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
0 deletions
+7
-0
ObjCPod.podspec
examples/Modules Example/ObjCPod/ObjCPod.podspec
+1
-0
abc_private.h
examples/Modules Example/ObjCPod/src/Private/abc_private.h
+4
-0
abc.m
examples/Modules Example/ObjCPod/src/abc.m
+2
-0
No files found.
examples/Modules Example/ObjCPod/ObjCPod.podspec
View file @
4508097f
...
@@ -8,6 +8,7 @@ Pod::Spec.new do |s|
...
@@ -8,6 +8,7 @@ Pod::Spec.new do |s|
s
.
license
=
'proprietary'
s
.
license
=
'proprietary'
s
.
source_files
=
"src/**/*.{h,m,swift}"
s
.
source_files
=
"src/**/*.{h,m,swift}"
s
.
private_header_files
=
"src/Private/*.h"
s
.
public_header_files
=
"src/**/*.h"
s
.
public_header_files
=
"src/**/*.h"
s
.
ios
.
deployment_target
=
'9.0'
s
.
ios
.
deployment_target
=
'9.0'
...
...
examples/Modules Example/ObjCPod/src/Private/abc_private.h
0 → 100644
View file @
4508097f
@interface
ABC
(
Private
)
+
(
void
)
barkSuperLoudly
;
@end
\ No newline at end of file
examples/Modules Example/ObjCPod/src/abc.m
View file @
4508097f
#import <ObjCPod/abc.h>
#import <ObjCPod/abc.h>
#import "abc_private.h"
#import <Foundation/Foundation.h>
#import <Foundation/Foundation.h>
@implementation
ABC
@implementation
ABC
+
(
void
)
bark
{
NSLog
(
@"woof woof"
);
}
+
(
void
)
bark
{
NSLog
(
@"woof woof"
);
}
+
(
void
)
barkSuperLoudly
{
NSLog
(
@"WOOF WOOF"
);
}
@end
@end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment