Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
GeliBusinessPlatform
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
CI / CD Analytics
Repository Analytics
Value Stream Analytics
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ljy
GeliBusinessPlatform
Commits
b636f122
Commit
b636f122
authored
Aug 13, 2020
by
lujunye
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
地图移动中不显示,
parent
0c061e02
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
66 additions
and
25 deletions
+66
-25
GeliBusinessPlatform.xcworkspace/xcuserdata/junyelu.xcuserdatad/UserInterfaceState.xcuserstate
...erdata/junyelu.xcuserdatad/UserInterfaceState.xcuserstate
+0
-0
GeliBusinessPlatform/ViewController/代客下单(货运)/下运单/XiaYunDanViewController.swift
...ViewController/代客下单(货运)/下运单/XiaYunDanViewController.swift
+18
-8
GeliBusinessPlatform/ViewController/货拉拉/下单联系人信息/XiaDanUserInfoViewController.swift
...Controller/货拉拉/下单联系人信息/XiaDanUserInfoViewController.swift
+1
-1
GeliBusinessPlatform/ViewController/货拉拉/收发货地址/ToAndFormSelectViewController.swift
...wController/货拉拉/收发货地址/ToAndFormSelectViewController.swift
+43
-13
GeliBusinessPlatform/ViewController/货拉拉/运单详情/cell/WayBillAddressCanDelItemCell.xib
...Controller/货拉拉/运单详情/cell/WayBillAddressCanDelItemCell.xib
+4
-3
No files found.
GeliBusinessPlatform.xcworkspace/xcuserdata/junyelu.xcuserdatad/UserInterfaceState.xcuserstate
View file @
b636f122
No preview for this file type
GeliBusinessPlatform/ViewController/代客下单(货运)/下运单/XiaYunDanViewController.swift
View file @
b636f122
...
@@ -719,11 +719,9 @@ class XiaYunDanViewController: BaseViewController,UITableViewDelegate,UITableVie
...
@@ -719,11 +719,9 @@ class XiaYunDanViewController: BaseViewController,UITableViewDelegate,UITableVie
lineV
.
frame
.
origin
.
x
=
fullScreenWidth
*
0.5
lineV
.
frame
.
origin
.
x
=
fullScreenWidth
*
0.5
hllView
.
isHidden
=
false
hllView
.
isHidden
=
false
locBtn
.
isUserInteractionEnabled
=
true
locBtn
.
isUserInteractionEnabled
=
true
if
fullScreenHeight
>
736
{
hBtnViewH
.
constant
=
83
hBtnViewH
.
constant
=
CGFloat
(
TabHeight
)
}
else
{
hBtnViewH
.
constant
=
49
}
if
isAlready
{
if
isAlready
{
...
@@ -2115,10 +2113,12 @@ class XiaYunDanViewController: BaseViewController,UITableViewDelegate,UITableVie
...
@@ -2115,10 +2113,12 @@ class XiaYunDanViewController: BaseViewController,UITableViewDelegate,UITableVie
//将delegate设置成自己
//将delegate设置成自己
pickerView
.
delegate
=
self
pickerView
.
delegate
=
self
view
.
addSubview
(
pickerView
)
view
.
addSubview
(
pickerView
)
pickerView
.
snp
.
makeConstraints
{
(
make
)
in
pickerView
.
snp
.
makeConstraints
{
(
make
)
in
make
.
top
.
equalTo
(
line
.
snp
.
bottom
)
make
.
top
.
equalTo
(
line
.
snp
.
bottom
)
make
.
left
.
right
.
equalTo
(
0
)
make
.
left
.
right
.
equalTo
(
0
)
make
.
bottom
.
equalTo
(
-
49
)
make
.
bottom
.
equalTo
(
-
TabHeight
)
}
}
pickerView
.
selectRow
(
dayIdx
,
inComponent
:
0
,
animated
:
false
)
pickerView
.
selectRow
(
dayIdx
,
inComponent
:
0
,
animated
:
false
)
pickerView
(
pickerView
,
didSelectRow
:
dayIdx
,
inComponent
:
0
)
pickerView
(
pickerView
,
didSelectRow
:
dayIdx
,
inComponent
:
0
)
...
@@ -2129,15 +2129,25 @@ class XiaYunDanViewController: BaseViewController,UITableViewDelegate,UITableVie
...
@@ -2129,15 +2129,25 @@ class XiaYunDanViewController: BaseViewController,UITableViewDelegate,UITableVie
let
btmBtn
=
UIButton
()
let
btmBtn
=
UIButton
()
btmBtn
.
backgroundColor
=
UIColor
(
named
:
"按钮渐变色上"
)
btmBtn
.
backgroundColor
=
UIColor
(
named
:
"按钮渐变色上"
)
btmBtn
.
setTitle
(
"确定"
,
for
:
.
normal
)
btmBtn
.
setTitleColor
(
UIColor
.
white
,
for
:
.
normal
)
btmBtn
.
setTitleColor
(
UIColor
.
white
,
for
:
.
normal
)
btmBtn
.
titleLabel
?
.
font
=
UIFont
(
name
:
"PingFangSC-Medium"
,
size
:
15
)
btmBtn
.
addTarget
(
self
,
action
:
#selector(
submitAc
)
,
for
:
.
touchUpInside
)
btmBtn
.
addTarget
(
self
,
action
:
#selector(
submitAc
)
,
for
:
.
touchUpInside
)
view
.
addSubview
(
btmBtn
)
view
.
addSubview
(
btmBtn
)
btmBtn
.
snp
.
makeConstraints
{
(
make
)
in
btmBtn
.
snp
.
makeConstraints
{
(
make
)
in
make
.
top
.
equalTo
(
pickerView
.
snp
.
bottom
)
make
.
top
.
equalTo
(
pickerView
.
snp
.
bottom
)
make
.
left
.
right
.
bottom
.
equalTo
(
0
)
make
.
left
.
right
.
bottom
.
equalTo
(
0
)
}
}
let
lbl1
=
UILabel
()
lbl1
.
text
=
"确定"
lbl1
.
font
=
UIFont
.
init
(
name
:
"PingFangSC-Medium"
,
size
:
15
)
lbl1
.
textColor
=
UIColor
.
white
lbl1
.
textAlignment
=
.
center
view
.
addSubview
(
lbl1
)
lbl1
.
snp
.
makeConstraints
{
(
make
)
in
make
.
top
.
equalTo
(
pickerView
.
snp
.
bottom
)
make
.
left
.
right
.
equalTo
(
0
)
make
.
height
.
equalTo
(
49
)
}
}
}
var
stime
:
Double
=
0
var
stime
:
Double
=
0
@objc
func
submitAc
(){
@objc
func
submitAc
(){
...
...
GeliBusinessPlatform/ViewController/货拉拉/下单联系人信息/XiaDanUserInfoViewController.swift
View file @
b636f122
...
@@ -39,7 +39,7 @@ class XiaDanUserInfoViewController: BaseViewController , CNContactPickerDelegate
...
@@ -39,7 +39,7 @@ class XiaDanUserInfoViewController: BaseViewController , CNContactPickerDelegate
userPhoneTF
.
text
=
arr
!
[
1
]
userPhoneTF
.
text
=
arr
!
[
1
]
messageTV
.
text
=
arr
!
[
2
]
messageTV
.
text
=
arr
!
[
2
]
}
}
messageTV
.
text
=
"格利食品"
}
}
...
...
GeliBusinessPlatform/ViewController/货拉拉/收发货地址/ToAndFormSelectViewController.swift
View file @
b636f122
...
@@ -29,6 +29,28 @@ class ToAndFormSelectViewController: BaseViewController, MAMapViewDelegate, CLLo
...
@@ -29,6 +29,28 @@ class ToAndFormSelectViewController: BaseViewController, MAMapViewDelegate, CLLo
var
tempCityName
=
""
var
tempCityName
=
""
var
detailAdrStr
=
""
var
detailAdrStr
=
""
func
mapView
(
_
mapView
:
MAMapView
!
,
regionWillChangeAnimated
animated
:
Bool
)
{
if
titleLbl
!=
nil
{
titleLbl
!.
text
=
""
introView
?
.
isHidden
=
true
sjImg
?
.
isHidden
=
true
}
}
func
mapView
(
_
mapView
:
MAMapView
!
,
regionDidChangeAnimated
animated
:
Bool
)
{
if
titleLbl
!=
nil
{
titleLbl
!.
text
=
""
introView
?
.
isHidden
=
true
sjImg
?
.
isHidden
=
true
}
}
func
mapView
(
_
mapView
:
MAMapView
!
,
mapWillMoveByUser
wasUserAction
:
Bool
)
{
if
titleLbl
!=
nil
{
titleLbl
!.
text
=
""
introView
?
.
isHidden
=
true
sjImg
?
.
isHidden
=
true
}
}
@objc
func
backToCurrentLoc
(
_
sender
:
Any
)
{
@objc
func
backToCurrentLoc
(
_
sender
:
Any
)
{
cityName
=
tempCityName
as
NSString
cityName
=
tempCityName
as
NSString
lat
=
tempLat
lat
=
tempLat
...
@@ -356,11 +378,13 @@ class ToAndFormSelectViewController: BaseViewController, MAMapViewDelegate, CLLo
...
@@ -356,11 +378,13 @@ class ToAndFormSelectViewController: BaseViewController, MAMapViewDelegate, CLLo
var
districet
=
""
var
districet
=
""
//MARK: -- 地址选择完成
//MARK: -- 地址选择完成
@IBAction
func
sureSelectAddressAction
(
_
sender
:
LGButton
)
{
@IBAction
func
sureSelectAddressAction
(
_
sender
:
LGButton
)
{
print
(
"sureSelectAddressAction"
)
print
(
"sureSelectAddressAction"
)
if
titleLbl
?
.
text
==
""
{
return
}
var
dict
:
Dictionary
<
String
,
Any
>
=
Dictionary
()
var
dict
:
Dictionary
<
String
,
Any
>
=
Dictionary
()
dict
[
"menPai"
]
=
addressDetailTF
.
text
dict
[
"menPai"
]
=
addressDetailTF
.
text
dict
[
"shouHuoRen"
]
=
nameTF
.
text
dict
[
"shouHuoRen"
]
=
nameTF
.
text
...
@@ -447,6 +471,7 @@ class ToAndFormSelectViewController: BaseViewController, MAMapViewDelegate, CLLo
...
@@ -447,6 +471,7 @@ class ToAndFormSelectViewController: BaseViewController, MAMapViewDelegate, CLLo
}
}
//MARK: - 高德地图delegate
//MARK: - 高德地图delegate
var
introView
:
UIView
?
var
introView
:
UIView
?
var
sjImg
:
UIImageView
?
var
titleLbl
:
UILabel
?
var
titleLbl
:
UILabel
?
var
contentLbl
:
UILabel
?
var
contentLbl
:
UILabel
?
...
@@ -461,7 +486,7 @@ class ToAndFormSelectViewController: BaseViewController, MAMapViewDelegate, CLLo
...
@@ -461,7 +486,7 @@ class ToAndFormSelectViewController: BaseViewController, MAMapViewDelegate, CLLo
var
specRecord
=
""
var
specRecord
=
""
func
onPOISearchDone
(
_
request
:
AMapPOISearchBaseRequest
!
,
response
:
AMapPOISearchResponse
!
)
{
func
onPOISearchDone
(
_
request
:
AMapPOISearchBaseRequest
!
,
response
:
AMapPOISearchResponse
!
)
{
print
(
"mapDidMoveByUser3"
,
isMove
)
if
response
.
count
==
0
{
if
response
.
count
==
0
{
return
return
}
}
...
@@ -492,10 +517,18 @@ class ToAndFormSelectViewController: BaseViewController, MAMapViewDelegate, CLLo
...
@@ -492,10 +517,18 @@ class ToAndFormSelectViewController: BaseViewController, MAMapViewDelegate, CLLo
contentLbl
?
.
numberOfLines
=
0
contentLbl
?
.
numberOfLines
=
0
contentLbl
?
.
lineBreakMode
=
.
byCharWrapping
contentLbl
?
.
lineBreakMode
=
.
byCharWrapping
introView
?
.
addSubview
(
contentLbl
!
)
introView
?
.
addSubview
(
contentLbl
!
)
let
img
=
UIImageView
()
img
.
image
=
UIImage
(
named
:
"矩形"
)
MapBgView
.
addSubview
(
img
)
sjImg
=
img
}
}
titleLbl
!.
text
=
response
.
pois
.
first
?
.
name
titleLbl
!.
text
=
response
.
pois
.
first
?
.
name
if
titleLbl
!.
text
!.
count
>
0
{
introView
?
.
isHidden
=
false
sjImg
?
.
isHidden
=
false
}
cityName
=
response
.
pois
.
first
?
.
city
as!
NSString
cityName
=
response
.
pois
.
first
?
.
city
as!
NSString
if
tempCityName
==
""
{
if
tempCityName
==
""
{
...
@@ -521,7 +554,7 @@ class ToAndFormSelectViewController: BaseViewController, MAMapViewDelegate, CLLo
...
@@ -521,7 +554,7 @@ class ToAndFormSelectViewController: BaseViewController, MAMapViewDelegate, CLLo
moveAdrName
=
response
.
pois
.
first
?
.
name
as!
String
moveAdrName
=
response
.
pois
.
first
?
.
name
as!
String
if
adrName
.
count
>
0
{
if
adrName
.
count
>
0
{
isMove
=
true
isMove
=
true
titleLbl
!.
text
=
adrName
titleLbl
!.
text
=
adrName
str
=
detailAdr
str
=
detailAdr
...
@@ -537,15 +570,14 @@ class ToAndFormSelectViewController: BaseViewController, MAMapViewDelegate, CLLo
...
@@ -537,15 +570,14 @@ class ToAndFormSelectViewController: BaseViewController, MAMapViewDelegate, CLLo
}
}
if
isHistory
==
false
{
if
isHistory
==
false
{
print
(
"移动地图"
)
let
coordinate
=
JZLocationConverter
.
gcj02
(
toWgs84
:
CLLocationCoordinate2D
(
latitude
:
lat
,
longitude
:
lng
))
let
coordinate
=
JZLocationConverter
.
gcj02
(
toWgs84
:
CLLocationCoordinate2D
(
latitude
:
lat
,
longitude
:
lng
))
let
d
=
[
"lat_lon"
:[
"lat"
:
coordinate
.
latitude
,
"lon"
:
coordinate
.
longitude
],
let
d
=
[
"lat_lon"
:[
"lat"
:
coordinate
.
latitude
,
"lon"
:
coordinate
.
longitude
],
"name"
:
titleLbl
!.
text
,
"name"
:
titleLbl
!.
text
,
"city_id"
:
city_id
"city_id"
:
city_id
]
as
[
String
:
Any
]
]
as
[
String
:
Any
]
adrDataModel
=
cityListDataModel
(
JSON
:
d
)
adrDataModel
=
cityListDataModel
(
JSON
:
d
)
}
}
isHistory
=
false
isHistory
=
false
let
attributes
=
[
NSAttributedString
.
Key
.
font
:
UIFont
.
systemFont
(
ofSize
:
11
),
let
attributes
=
[
NSAttributedString
.
Key
.
font
:
UIFont
.
systemFont
(
ofSize
:
11
),
...
@@ -598,10 +630,7 @@ class ToAndFormSelectViewController: BaseViewController, MAMapViewDelegate, CLLo
...
@@ -598,10 +630,7 @@ class ToAndFormSelectViewController: BaseViewController, MAMapViewDelegate, CLLo
make
.
height
.
equalTo
(
h
+
20
)
make
.
height
.
equalTo
(
h
+
20
)
})
})
let
img
=
UIImageView
()
sjImg
?
.
snp
.
makeConstraints
{
(
make
)
in
img
.
image
=
UIImage
(
named
:
"矩形"
)
MapBgView
.
addSubview
(
img
)
img
.
snp
.
makeConstraints
{
(
make
)
in
make
.
centerX
.
equalTo
(
introView
!.
snp
.
centerX
)
make
.
centerX
.
equalTo
(
introView
!.
snp
.
centerX
)
make
.
top
.
equalTo
(
introView
!.
snp
.
bottom
)
make
.
top
.
equalTo
(
introView
!.
snp
.
bottom
)
make
.
height
.
equalTo
(
7.25
)
make
.
height
.
equalTo
(
7.25
)
...
@@ -629,6 +658,7 @@ class ToAndFormSelectViewController: BaseViewController, MAMapViewDelegate, CLLo
...
@@ -629,6 +658,7 @@ class ToAndFormSelectViewController: BaseViewController, MAMapViewDelegate, CLLo
func
mapView
(
_
mapView
:
MAMapView
!
,
mapDidMoveByUser
wasUserAction
:
Bool
)
{
func
mapView
(
_
mapView
:
MAMapView
!
,
mapDidMoveByUser
wasUserAction
:
Bool
)
{
let
req
=
AMapPOIAroundSearchRequest
()
let
req
=
AMapPOIAroundSearchRequest
()
//地址
//地址
print
(
"mapDidMoveByUser2"
,
isMove
)
if
isMove
{
if
isMove
{
adrName
=
""
adrName
=
""
detailAdr
=
""
detailAdr
=
""
...
@@ -636,14 +666,14 @@ class ToAndFormSelectViewController: BaseViewController, MAMapViewDelegate, CLLo
...
@@ -636,14 +666,14 @@ class ToAndFormSelectViewController: BaseViewController, MAMapViewDelegate, CLLo
historySelect
=
10086
historySelect
=
10086
}
}
req
.
location
=
AMapGeoPoint
.
location
(
withLatitude
:
CGFloat
(
mapView
.
centerCoordinate
.
latitude
),
longitude
:
CGFloat
(
mapView
.
centerCoordinate
.
longitude
))
req
.
location
=
AMapGeoPoint
.
location
(
withLatitude
:
CGFloat
(
mapView
.
centerCoordinate
.
latitude
),
longitude
:
CGFloat
(
mapView
.
centerCoordinate
.
longitude
))
req
.
requireExtension
=
true
req
.
requireExtension
=
true
search
.
aMapPOIAroundSearch
(
req
)
search
.
aMapPOIAroundSearch
(
req
)
}
}
var
isHistory
=
false
var
isHistory
=
false
var
annotation
:
MAPointAnnotation
?
=
nil
var
annotation
:
MAPointAnnotation
?
=
nil
func
mapViewRegionChanged
(
_
mapView
:
MAMapView
!
)
{
func
mapViewRegionChanged
(
_
mapView
:
MAMapView
!
)
{
...
...
GeliBusinessPlatform/ViewController/货拉拉/运单详情/cell/WayBillAddressCanDelItemCell.xib
View file @
b636f122
...
@@ -58,12 +58,12 @@
...
@@ -58,12 +58,12 @@
<nil
key=
"highlightedColor"
/>
<nil
key=
"highlightedColor"
/>
</label>
</label>
<label
opaque=
"NO"
userInteractionEnabled=
"NO"
contentMode=
"left"
horizontalHuggingPriority=
"251"
verticalHuggingPriority=
"251"
usesAttributedText=
"YES"
lineBreakMode=
"tailTruncation"
numberOfLines=
"0"
baselineAdjustment=
"alignBaselines"
adjustsFontSizeToFit=
"NO"
translatesAutoresizingMaskIntoConstraints=
"NO"
id=
"JfY-Q9-10Q"
>
<label
opaque=
"NO"
userInteractionEnabled=
"NO"
contentMode=
"left"
horizontalHuggingPriority=
"251"
verticalHuggingPriority=
"251"
usesAttributedText=
"YES"
lineBreakMode=
"tailTruncation"
numberOfLines=
"0"
baselineAdjustment=
"alignBaselines"
adjustsFontSizeToFit=
"NO"
translatesAutoresizingMaskIntoConstraints=
"NO"
id=
"JfY-Q9-10Q"
>
<rect
key=
"frame"
x=
"46"
y=
"29"
width=
"2
3
2"
height=
"42"
/>
<rect
key=
"frame"
x=
"46"
y=
"29"
width=
"2
4
2"
height=
"42"
/>
<attributedString
key=
"attributedText"
>
<attributedString
key=
"attributedText"
>
<fragment
content=
" "
>
<fragment
content=
" "
>
<attributes>
<attributes>
<color
key=
"NSColor"
red=
"0.40000000000000002"
green=
"0.40000000000000002"
blue=
"0.40000000000000002"
alpha=
"1"
colorSpace=
"custom"
customColorSpace=
"sRGB"
/>
<color
key=
"NSColor"
red=
"0.40000000000000002"
green=
"0.40000000000000002"
blue=
"0.40000000000000002"
alpha=
"1"
colorSpace=
"custom"
customColorSpace=
"sRGB"
/>
<font
key=
"NSFont"
metaFont=
"
system"
size=
"12
"
/>
<font
key=
"NSFont"
metaFont=
"
cellTitle
"
/>
<paragraphStyle
key=
"NSParagraphStyle"
alignment=
"natural"
lineBreakMode=
"wordWrapping"
baseWritingDirection=
"natural"
tighteningFactorForTruncation=
"0.0"
/>
<paragraphStyle
key=
"NSParagraphStyle"
alignment=
"natural"
lineBreakMode=
"wordWrapping"
baseWritingDirection=
"natural"
tighteningFactorForTruncation=
"0.0"
/>
</attributes>
</attributes>
</fragment>
</fragment>
...
@@ -85,6 +85,7 @@
...
@@ -85,6 +85,7 @@
</view>
</view>
<button
opaque=
"NO"
contentMode=
"scaleToFill"
contentHorizontalAlignment=
"center"
contentVerticalAlignment=
"center"
buttonType=
"roundedRect"
lineBreakMode=
"middleTruncation"
translatesAutoresizingMaskIntoConstraints=
"NO"
id=
"gIq-zy-KC4"
>
<button
opaque=
"NO"
contentMode=
"scaleToFill"
contentHorizontalAlignment=
"center"
contentVerticalAlignment=
"center"
buttonType=
"roundedRect"
lineBreakMode=
"middleTruncation"
translatesAutoresizingMaskIntoConstraints=
"NO"
id=
"gIq-zy-KC4"
>
<rect
key=
"frame"
x=
"303"
y=
"29"
width=
"40"
height=
"20"
/>
<rect
key=
"frame"
x=
"303"
y=
"29"
width=
"40"
height=
"20"
/>
<color
key=
"backgroundColor"
name=
"白色背景色"
/>
<constraints>
<constraints>
<constraint
firstAttribute=
"height"
constant=
"20"
id=
"b8d-ak-qvu"
/>
<constraint
firstAttribute=
"height"
constant=
"20"
id=
"b8d-ak-qvu"
/>
<constraint
firstAttribute=
"width"
constant=
"40"
id=
"lLc-Ql-JTh"
/>
<constraint
firstAttribute=
"width"
constant=
"40"
id=
"lLc-Ql-JTh"
/>
...
@@ -135,7 +136,7 @@
...
@@ -135,7 +136,7 @@
<constraint
firstAttribute=
"trailing"
secondItem=
"d4F-L8-sHy"
secondAttribute=
"trailing"
constant=
"15"
id=
"fik-0a-bN6"
/>
<constraint
firstAttribute=
"trailing"
secondItem=
"d4F-L8-sHy"
secondAttribute=
"trailing"
constant=
"15"
id=
"fik-0a-bN6"
/>
<constraint
firstItem=
"d4F-L8-sHy"
firstAttribute=
"leading"
secondItem=
"wxD-2W-Kct"
secondAttribute=
"leading"
id=
"geB-F3-UYR"
/>
<constraint
firstItem=
"d4F-L8-sHy"
firstAttribute=
"leading"
secondItem=
"wxD-2W-Kct"
secondAttribute=
"leading"
id=
"geB-F3-UYR"
/>
<constraint
firstItem=
"xQh-lb-yiJ"
firstAttribute=
"leading"
secondItem=
"JJG-L3-lyj"
secondAttribute=
"trailing"
constant=
"10"
id=
"rId-AJ-tk5"
/>
<constraint
firstItem=
"xQh-lb-yiJ"
firstAttribute=
"leading"
secondItem=
"JJG-L3-lyj"
secondAttribute=
"trailing"
constant=
"10"
id=
"rId-AJ-tk5"
/>
<constraint
first
Attribute=
"trailing"
secondItem=
"JfY-Q9-10Q"
secondAttribute=
"trailing"
constant=
"80
"
id=
"rWE-FX-NSP"
/>
<constraint
first
Item=
"gIq-zy-KC4"
firstAttribute=
"leading"
secondItem=
"JfY-Q9-10Q"
secondAttribute=
"trailing"
constant=
"15
"
id=
"rWE-FX-NSP"
/>
<constraint
firstItem=
"eV0-oM-vuy"
firstAttribute=
"centerX"
secondItem=
"JJG-L3-lyj"
secondAttribute=
"centerX"
id=
"wRy-Qd-9t3"
/>
<constraint
firstItem=
"eV0-oM-vuy"
firstAttribute=
"centerX"
secondItem=
"JJG-L3-lyj"
secondAttribute=
"centerX"
id=
"wRy-Qd-9t3"
/>
<constraint
firstItem=
"Zm0-Vi-78r"
firstAttribute=
"leading"
secondItem=
"H2p-sc-9uM"
secondAttribute=
"leading"
constant=
"24.5"
id=
"ygX-wP-k9T"
/>
<constraint
firstItem=
"Zm0-Vi-78r"
firstAttribute=
"leading"
secondItem=
"H2p-sc-9uM"
secondAttribute=
"leading"
constant=
"24.5"
id=
"ygX-wP-k9T"
/>
<constraint
firstAttribute=
"bottom"
secondItem=
"eV0-oM-vuy"
secondAttribute=
"bottom"
id=
"zZh-DB-pte"
/>
<constraint
firstAttribute=
"bottom"
secondItem=
"eV0-oM-vuy"
secondAttribute=
"bottom"
id=
"zZh-DB-pte"
/>
...
...
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