Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 338f2db

Browse files
新增MHObject -- CoderMikeHe
1 parent a9a5924 commit 338f2db

File tree

3 files changed

+44
-0
lines changed

3 files changed

+44
-0
lines changed

‎MHDevelopExample/MHDevelopExample.xcodeproj/project.pbxproj

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,7 @@
194194
DE045E6D21C1534400DC9032 /* MHTitleLeftButton.m in Sources */ = {isa = PBXBuildFile; fileRef = DE045E6221C1534400DC9032 /* MHTitleLeftButton.m */; };
195195
DE045E6E21C1534400DC9032 /* MHTitleRightButton.m in Sources */ = {isa = PBXBuildFile; fileRef = DE045E6621C1534400DC9032 /* MHTitleRightButton.m */; };
196196
DE045E6F21C1534400DC9032 /* MHDivider.m in Sources */ = {isa = PBXBuildFile; fileRef = DE045E6921C1534400DC9032 /* MHDivider.m */; };
197+
DE045E7621C15A0400DC9032 /* MHObject.m in Sources */ = {isa = PBXBuildFile; fileRef = DE045E7521C15A0400DC9032 /* MHObject.m */; };
197198
E9263E7920CEBD4F003C8C69 /* CMHWaterfallDetailViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = E9263E7820CEBD4F003C8C69 /* CMHWaterfallDetailViewController.m */; };
198199
E9263E7D20CEC0CE003C8C69 /* CMHExample23ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = E9263E7C20CEC0CE003C8C69 /* CMHExample23ViewController.m */; };
199200
E9263E8820CEC245003C8C69 /* XLCardItem.m in Sources */ = {isa = PBXBuildFile; fileRef = E9263E8020CEC245003C8C69 /* XLCardItem.m */; };
@@ -705,6 +706,8 @@
705706
DE045E6721C1534400DC9032 /* MHTitleLeftButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MHTitleLeftButton.h; sourceTree = "<group>"; };
706707
DE045E6821C1534400DC9032 /* MHImageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MHImageView.h; sourceTree = "<group>"; };
707708
DE045E6921C1534400DC9032 /* MHDivider.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MHDivider.m; sourceTree = "<group>"; };
709+
DE045E7421C15A0400DC9032 /* MHObject.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MHObject.h; sourceTree = "<group>"; };
710+
DE045E7521C15A0400DC9032 /* MHObject.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MHObject.m; sourceTree = "<group>"; };
708711
DF4CA6BC05B6740B754109C1 /* Pods-MHDevelopExample.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MHDevelopExample.debug.xcconfig"; path = "Pods/Target Support Files/Pods-MHDevelopExample/Pods-MHDevelopExample.debug.xcconfig"; sourceTree = "<group>"; };
709712
E53FC4F542F2116C4E9F74A8 /* Pods_MHDevelopExample_MHDevelopExampleTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_MHDevelopExample_MHDevelopExampleTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
710713
E9263E7720CEBD4F003C8C69 /* CMHWaterfallDetailViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CMHWaterfallDetailViewController.h; sourceTree = "<group>"; };
@@ -2587,6 +2590,7 @@
25872590
DE045E5321C1518000DC9032 /* BaseClass */ = {
25882591
isa = PBXGroup;
25892592
children = (
2593+
DE045E7321C159D100DC9032 /* Model */,
25902594
DE045E5D21C1534400DC9032 /* View */,
25912595
DE045E5421C1521500DC9032 /* ViewController */,
25922596
);
@@ -2623,6 +2627,15 @@
26232627
path = View;
26242628
sourceTree = "<group>";
26252629
};
2630+
DE045E7321C159D100DC9032 /* Model */ = {
2631+
isa = PBXGroup;
2632+
children = (
2633+
DE045E7421C15A0400DC9032 /* MHObject.h */,
2634+
DE045E7521C15A0400DC9032 /* MHObject.m */,
2635+
);
2636+
path = Model;
2637+
sourceTree = "<group>";
2638+
};
26262639
E9263E7620CEBD1C003C8C69 /* Controller */ = {
26272640
isa = PBXGroup;
26282641
children = (
@@ -4307,6 +4320,7 @@
43074320
E92C138D20DA59570022891F /* SAMKeychain+CMHUtil.m in Sources */,
43084321
E9752B23211D9B9600647656 /* CMHExample35ViewController.m in Sources */,
43094322
261133701EF43C60006AE109 /* SUPublicWebController1.m in Sources */,
4323+
DE045E7621C15A0400DC9032 /* MHObject.m in Sources */,
43104324
E929D85020CA6BBB001F833E /* YYCache+CMHHelper.m in Sources */,
43114325
E92C138620DA54B70022891F /* CMHHTTPRequest.m in Sources */,
43124326
E951602020C284DB007224DA /* CMHObject.m in Sources */,
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
//
2+
// MHObject.h
3+
// MHDevelopExample
4+
//
5+
// Created by CoderMikeHe on 2018年12月12日.
6+
// Copyright © 2018 CoderMikeHe. All rights reserved.
7+
//
8+
9+
#import <Foundation/Foundation.h>
10+
11+
NS_ASSUME_NONNULL_BEGIN
12+
13+
@interface MHObject : NSObject
14+
15+
@end
16+
17+
NS_ASSUME_NONNULL_END
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
//
2+
// MHObject.m
3+
// MHDevelopExample
4+
//
5+
// Created by CoderMikeHe on 2018年12月12日.
6+
// Copyright © 2018 CoderMikeHe. All rights reserved.
7+
//
8+
9+
#import "MHObject.h"
10+
11+
@implementation MHObject
12+
13+
@end

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /