Commit 1b093dd6 authored by admin's avatar admin

修复部分bug

parent 5e2cb380
...@@ -784,7 +784,6 @@ ...@@ -784,7 +784,6 @@
isa = PBXGroup; isa = PBXGroup;
children = ( children = (
84FAC75E1BFF2C5B00FD094D /* NoData */, 84FAC75E1BFF2C5B00FD094D /* NoData */,
8426A4A11BDF0CD600E5FDF5 /* Case */,
8426A4A41BDF0CD600E5FDF5 /* OnLine */, 8426A4A41BDF0CD600E5FDF5 /* OnLine */,
8426A4A71BDF0CD600E5FDF5 /* Picture */, 8426A4A71BDF0CD600E5FDF5 /* Picture */,
8426A4AA1BDF0CD600E5FDF5 /* Question */, 8426A4AA1BDF0CD600E5FDF5 /* Question */,
...@@ -796,29 +795,6 @@ ...@@ -796,29 +795,6 @@
path = Function; path = Function;
sourceTree = "<group>"; sourceTree = "<group>";
}; };
8426A4A11BDF0CD600E5FDF5 /* Case */ = {
isa = PBXGroup;
children = (
8426A4A21BDF0CD600E5FDF5 /* View */,
8426A4A31BDF0CD600E5FDF5 /* ViewController */,
);
path = Case;
sourceTree = "<group>";
};
8426A4A21BDF0CD600E5FDF5 /* View */ = {
isa = PBXGroup;
children = (
);
path = View;
sourceTree = "<group>";
};
8426A4A31BDF0CD600E5FDF5 /* ViewController */ = {
isa = PBXGroup;
children = (
);
path = ViewController;
sourceTree = "<group>";
};
8426A4A41BDF0CD600E5FDF5 /* OnLine */ = { 8426A4A41BDF0CD600E5FDF5 /* OnLine */ = {
isa = PBXGroup; isa = PBXGroup;
children = ( children = (
......
...@@ -10,13 +10,13 @@ ...@@ -10,13 +10,13 @@
#define Url_h #define Url_h
// url 测试环境 // url 测试环境
#define kRedStarURL @"http://218.244.151.129:7580/" // #define kRedStarURL @"http://218.244.151.129:7580/"
// 正式环境 // 正式环境
// #define kRedStarURL @"http://219.235.234.225:7580/" // #define kRedStarURL @"http://219.235.234.225:7580/"
// 最新正式环境 // 最新正式环境
// #define kRedStarURL @"http://219.235.234.212:7580/" #define kRedStarURL @"http://219.235.234.212:7580/"
// 检查更新 // 检查更新
#define kCheckUpdateURL @"redstar-server/rest/ipapk?type=ipa" #define kCheckUpdateURL @"redstar-server/rest/ipapk?type=ipa"
......
...@@ -41,7 +41,7 @@ ...@@ -41,7 +41,7 @@
self.shopnameLabel.text = [NSString stringWithFormat:@"%@", lookOnLine.store_name]; self.shopnameLabel.text = [NSString stringWithFormat:@"%@", lookOnLine.store_name];
self.overDateLabel.text = [NSString stringWithFormat:@"%@", lookOnLine.endDate]; self.overDateLabel.text = [NSString stringWithFormat:@"%@", lookOnLine.endDate];
self.peopleLabel.text = [NSString stringWithFormat:@"发起人:%@", lookOnLine.create_operName]; self.peopleLabel.text = [NSString stringWithFormat:@"%@", lookOnLine.create_operName];
self.startDateLabel.text = [[NSString stringWithFormat:@"%@", lookOnLine.create_time] substringToIndex:11]; self.startDateLabel.text = [[NSString stringWithFormat:@"%@", lookOnLine.create_time] substringToIndex:11];
NSString *intro = [NSString stringWithFormat:@"%@", lookOnLine.content]; NSString *intro = [NSString stringWithFormat:@"%@", lookOnLine.content];
......
...@@ -413,6 +413,7 @@ ...@@ -413,6 +413,7 @@
- (void)deletePicture:(UIButton *)button - (void)deletePicture:(UIButton *)button
{ {
NSLog(@"从imageName中删除了第%ld张图片",(button.tag - 5521)); NSLog(@"从imageName中删除了第%ld张图片",(button.tag - 5521));
// 从存放所有Image的数组里移除当前点击的Image // 从存放所有Image的数组里移除当前点击的Image
[self.imageNameArray removeObjectAtIndex:(button.tag - 5521)]; [self.imageNameArray removeObjectAtIndex:(button.tag - 5521)];
......
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