Commit fbcfd94c authored by 曹云霄's avatar 曹云霄

更换个人中心背景图片,优化自定义大头针

parent 90ed2e67
...@@ -649,6 +649,7 @@ ...@@ -649,6 +649,7 @@
PRODUCT_BUNDLE_IDENTIFIER = com.gomore.palmwms; PRODUCT_BUNDLE_IDENTIFIER = com.gomore.palmwms;
PRODUCT_NAME = "$(TARGET_NAME)"; PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE = "e922dce2-c5d3-497c-8fa8-132e12cff6c0"; PROVISIONING_PROFILE = "e922dce2-c5d3-497c-8fa8-132e12cff6c0";
TARGETED_DEVICE_FAMILY = 1;
USER_HEADER_SEARCH_PATHS = "$(PODS_ROOT)/**"; USER_HEADER_SEARCH_PATHS = "$(PODS_ROOT)/**";
}; };
name = Debug; name = Debug;
...@@ -679,6 +680,7 @@ ...@@ -679,6 +680,7 @@
PRODUCT_BUNDLE_IDENTIFIER = com.gomore.palmwms; PRODUCT_BUNDLE_IDENTIFIER = com.gomore.palmwms;
PRODUCT_NAME = "$(TARGET_NAME)"; PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE = "e922dce2-c5d3-497c-8fa8-132e12cff6c0"; PROVISIONING_PROFILE = "e922dce2-c5d3-497c-8fa8-132e12cff6c0";
TARGETED_DEVICE_FAMILY = 1;
USER_HEADER_SEARCH_PATHS = "$(PODS_ROOT)/**"; USER_HEADER_SEARCH_PATHS = "$(PODS_ROOT)/**";
}; };
name = Release; name = Release;
......
...@@ -157,7 +157,7 @@ ...@@ -157,7 +157,7 @@
} }
[annottionView setSelected:YES animated:YES]; [annottionView setSelected:YES animated:YES];
UserPaopaoView *paopaoView = [[UserPaopaoView alloc] signUserInitialize:[UIView new] withCoord:annotation.coordinate]; UserPaopaoView *paopaoView = [[UserPaopaoView alloc] signUserInitialize:[UIView new] withCoord:annotation.coordinate];
paopaoView.frame = CGRectMake(0, 0, ScreenSize.width-150, 70); paopaoView.frame = CGRectMake(0, 0, 200, 70);
annottionView.paopaoView = paopaoView; annottionView.paopaoView = paopaoView;
return annottionView; return annottionView;
} }
......
...@@ -246,7 +246,7 @@ ...@@ -246,7 +246,7 @@
annottionView = [[CustomBMKAnnotationView alloc]carSignInitialize:annotation reuseIdentifier:USERLOCATIONID]; annottionView = [[CustomBMKAnnotationView alloc]carSignInitialize:annotation reuseIdentifier:USERLOCATIONID];
} }
UserPaopaoView *paopaoView = [[UserPaopaoView alloc] signUserInitialize:[UIView new] withCoord:annotation.coordinate]; UserPaopaoView *paopaoView = [[UserPaopaoView alloc] signUserInitialize:[UIView new] withCoord:annotation.coordinate];
paopaoView.frame = CGRectMake(0, 0, ScreenSize.width-150, 70); paopaoView.frame = CGRectMake(0, 0, 200, 70);
annottionView.paopaoView = paopaoView; annottionView.paopaoView = paopaoView;
return annottionView; return annottionView;
} }
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
@implementation UserPaopaoView @implementation UserPaopaoView
#define WIDTH ScreenSize.width-150 #define WIDTH 200
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
{ {
if ([self initWithCustomView:customer]) { if ([self initWithCustomView:customer]) {
//背景大小 //背景大小
UIImageView *background = [[UIImageView alloc]initWithFrame:CGRectMake(0, 0, ScreenSize.width-150, 65)]; UIImageView *background = [[UIImageView alloc]initWithFrame:CGRectMake(0, 0, WIDTH, 65)];
background.image = [UIImage imageNamed:@"paopao"]; background.image = [UIImage imageNamed:@"paopao"];
[customer addSubview:background]; [customer addSubview:background];
for (int i=0; i<2; i++) { for (int i=0; i<2; i++) {
......
...@@ -7,12 +7,10 @@ ...@@ -7,12 +7,10 @@
}, },
{ {
"idiom" : "universal", "idiom" : "universal",
"filename" : "headerBackground@2x.png",
"scale" : "2x" "scale" : "2x"
}, },
{ {
"idiom" : "universal", "idiom" : "universal",
"filename" : "headerBackground@3x.png",
"scale" : "3x" "scale" : "3x"
} }
], ],
......
...@@ -68,7 +68,7 @@ ...@@ -68,7 +68,7 @@
/** /**
* 发货单坐标排序 * 发货单坐标排序
*/ */
#define ORDERSORTING @"route/getByBillnumber/{billNumber}?billNumber=%@&code=%@" #define ORDERSORTING @"route/getByBillnumber?billNumber=%@&code=%@"
......
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