Commit 63fb02bb authored by 曹云霄's avatar 曹云霄

caoyunxiao

parent dd206a00
......@@ -20,12 +20,11 @@
self.view.backgroundColor = [UIColor redColor];
UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
button.frame = CGRectMake(100, 100, 100, 100);
button.backgroundColor = [UIColor blackColor];
[self.view addSubview:button];
[button addTarget:self action:@selector(Click) forControlEvents:UIControlEventTouchUpInside];
// UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
// button.frame = CGRectMake(100, 100, 100, 100);
// button.backgroundColor = [UIColor blackColor];
// [self.view addSubview:button];
// [button addTarget:self action:@selector(Click) forControlEvents:UIControlEventTouchUpInside];
}
......
......@@ -24,12 +24,11 @@
Toolview *toolview = [[Toolview alloc]initWithFrame:CGRectMake(Zero, Zero, ScreenWidth, NavigationHeight)];
[self.tabBar addSubview:toolview];
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"StoryboardwithCYX" bundle:nil];
ClientViewController *client = [[ClientViewController alloc]init];
ClientViewController *client = [storyboard instantiateViewControllerWithIdentifier:@"Client"];
UINavigationController *nav = [[UINavigationController alloc]initWithRootViewController:client];
NSArray *arr = @[nav];
self.viewControllers = arr;
......
......@@ -23,7 +23,7 @@
{
if (self = [super initWithFrame:frame]) {
self.backgroundColor = kTCColor(239, 239, 239);
self.backgroundColor = kTCColor(255, 255, 255);
[self uiConfigAction];
}
return self;
......
......@@ -32,6 +32,7 @@
29706DB41CD082990003C412 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 29706DB31CD082990003C412 /* Assets.xcassets */; };
29706DB71CD082990003C412 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 29706DB51CD082990003C412 /* LaunchScreen.storyboard */; };
29807C621CD20C2A00F111B8 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 29807C611CD20C2A00F111B8 /* Images.xcassets */; };
29807C651CD20F0F00F111B8 /* StoryboardwithCYX.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 29807C641CD20F0F00F111B8 /* StoryboardwithCYX.storyboard */; };
745C665EA695DD3EC6271ADE /* libPods.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DDC80D439AC474587DD59064 /* libPods.a */; };
/* End PBXBuildFile section */
......@@ -76,6 +77,7 @@
29706DB61CD082990003C412 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
29706DB81CD082990003C412 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
29807C611CD20C2A00F111B8 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
29807C641CD20F0F00F111B8 /* StoryboardwithCYX.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = StoryboardwithCYX.storyboard; sourceTree = "<group>"; };
CA5ED00287EA4EE622158E3C /* Pods.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = Pods.release.xcconfig; path = "Pods/Target Support Files/Pods/Pods.release.xcconfig"; sourceTree = "<group>"; };
D537F80EFAB9298B3ADA241A /* Pods.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = Pods.debug.xcconfig; path = "Pods/Target Support Files/Pods/Pods.debug.xcconfig"; sourceTree = "<group>"; };
DDC80D439AC474587DD59064 /* libPods.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libPods.a; sourceTree = BUILT_PRODUCTS_DIR; };
......@@ -215,8 +217,7 @@
2962D06A1CD1A3FE0058829D /* MyClient */ = {
isa = PBXGroup;
children = (
2962D06B1CD1A43A0058829D /* ClientViewController.h */,
2962D06C1CD1A43A0058829D /* ClientViewController.m */,
29807C661CD20F3100F111B8 /* Controller */,
);
name = MyClient;
sourceTree = "<group>";
......@@ -283,6 +284,7 @@
29706DA71CD082990003C412 /* AppDelegate.h */,
29706DA81CD082990003C412 /* AppDelegate.m */,
29706DAD1CD082990003C412 /* Main.storyboard */,
29807C641CD20F0F00F111B8 /* StoryboardwithCYX.storyboard */,
29706DB31CD082990003C412 /* Assets.xcassets */,
29706DB51CD082990003C412 /* LaunchScreen.storyboard */,
29706DB81CD082990003C412 /* Info.plist */,
......@@ -301,6 +303,15 @@
name = "Supporting Files";
sourceTree = "<group>";
};
29807C661CD20F3100F111B8 /* Controller */ = {
isa = PBXGroup;
children = (
2962D06B1CD1A43A0058829D /* ClientViewController.h */,
2962D06C1CD1A43A0058829D /* ClientViewController.m */,
);
name = Controller;
sourceTree = "<group>";
};
4333C4B25549A396FC0CD944 /* Frameworks */ = {
isa = PBXGroup;
children = (
......@@ -379,6 +390,7 @@
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
29807C651CD20F0F00F111B8 /* StoryboardwithCYX.storyboard in Resources */,
2962D08B1CD1EA350058829D /* 4.jpg in Resources */,
2962D0891CD1EA350058829D /* 2.jpg in Resources */,
29706DB71CD082990003C412 /* LaunchScreen.storyboard in Resources */,
......
......@@ -12,7 +12,7 @@
<rect key="frame" x="0.0" y="0.0" width="507" height="768"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="140048947-1" id="CQr-RC-S14">
<imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="05产品库-详情_03" id="CQr-RC-S14">
<rect key="frame" x="0.0" y="0.0" width="507" height="768"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
</imageView>
......@@ -77,6 +77,6 @@
</scene>
</scenes>
<resources>
<image name="140048947-1" width="900" height="900"/>
<image name="05产品库-详情_03" width="500" height="375"/>
</resources>
</document>
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment