Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Sign in / Register
Toggle navigation
L
LuckFarm
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lmj
LuckFarm
Commits
fd14a671
Commit
fd14a671
authored
Nov 14, 2020
by
Mazy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix double click bugs
parent
70ac3487
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
39 additions
and
17 deletions
+39
-17
project.pbxproj
GYDemo/GYDemo.xcodeproj/project.pbxproj
+2
-2
GYCashSixAwardAlertView.m
GYDemo/GYDemo/Alert/GYCashSixAwardAlertView.m
+8
-1
GYGiftAlertView.m
GYDemo/GYDemo/Alert/GYGiftAlertView.m
+8
-0
GYTaskAlertView.m
GYDemo/GYDemo/Alert/GYTaskAlertView.m
+10
-3
xcschememanagement.plist
...rdata/mazy.xcuserdatad/xcschemes/xcschememanagement.plist
+10
-10
xcschememanagement.plist
...rdata/mazy.xcuserdatad/xcschemes/xcschememanagement.plist
+1
-1
UserInterfaceState.xcuserstate
...cuserdata/mazy.xcuserdatad/UserInterfaceState.xcuserstate
+0
-0
No files found.
GYDemo/GYDemo.xcodeproj/project.pbxproj
View file @
fd14a671
...
...
@@ -1003,7 +1003,7 @@
CODE_SIGN_ENTITLEMENTS
=
GYDemo/GYDemo.entitlements
;
CODE_SIGN_IDENTITY
=
"iPhone Developer"
;
CODE_SIGN_STYLE
=
Manual
;
CURRENT_PROJECT_VERSION
=
10
5
;
CURRENT_PROJECT_VERSION
=
10
3
;
DEVELOPMENT_TEAM
=
XWMRLLSSFL
;
ENABLE_BITCODE
=
NO
;
GCC_INCREASE_PRECOMPILED_HEADER_SHARING
=
NO
;
...
...
@@ -1035,7 +1035,7 @@
CODE_SIGN_ENTITLEMENTS
=
GYDemo/GYDemo.entitlements
;
CODE_SIGN_IDENTITY
=
"iPhone Developer"
;
CODE_SIGN_STYLE
=
Manual
;
CURRENT_PROJECT_VERSION
=
10
5
;
CURRENT_PROJECT_VERSION
=
10
3
;
DEVELOPMENT_TEAM
=
XWMRLLSSFL
;
ENABLE_BITCODE
=
NO
;
GCC_INCREASE_PRECOMPILED_HEADER_SHARING
=
NO
;
...
...
GYDemo/GYDemo/Alert/GYCashSixAwardAlertView.m
View file @
fd14a671
...
...
@@ -15,7 +15,7 @@
-
(
void
)
awakeFromNib
{
[
super
awakeFromNib
];
self
.
tag
=
1205
;
self
.
mainContentView
.
transform
=
CGAffineTransformMakeScale
(
0
.
01
,
0
.
01
);
self
.
countDown
=
4
;
self
.
cancelButton
.
userInteractionEnabled
=
false
;
...
...
@@ -50,6 +50,13 @@
}
-
(
void
)
showAlertToView
:
(
UIView
*
)
toView
amount
:
(
NSString
*
)
money
firstShow
:
(
BOOL
)
isFirst
onlyCash
:
(
BOOL
)
isCash
{
for
(
UIView
*
subView
in
toView
.
subviews
)
{
if
(
subView
.
tag
==
1205
)
{
return
;
}
}
self
.
gainAmountLabel
.
text
=
[
NSString
stringWithFormat
:
@"+%@"
,
money
];
if
(
isFirst
)
{
...
...
GYDemo/GYDemo/Alert/GYGiftAlertView.m
View file @
fd14a671
...
...
@@ -26,6 +26,7 @@
[
super
awakeFromNib
];
self
.
hidden
=
YES
;
self
.
tag
=
1024
;
self
.
bgView
.
backgroundColor
=
[
UIColor
clearColor
];
self
.
giftBgView
.
backgroundColor
=
[
UIColor
clearColor
];
self
.
backgroundColor
=
[[
UIColor
blackColor
]
colorWithAlphaComponent
:
0
.
3
];
...
...
@@ -110,6 +111,13 @@
}
-
(
void
)
show
:
(
UIView
*
)
superView
{
for
(
UIView
*
subView
in
superView
.
subviews
)
{
if
(
subView
.
tag
==
1024
)
{
return
;
}
}
self
.
hidden
=
NO
;
CAKeyframeAnimation
*
animation
=
[
CAKeyframeAnimation
animationWithKeyPath
:
@"transform"
];
...
...
GYDemo/GYDemo/Alert/GYTaskAlertView.m
View file @
fd14a671
...
...
@@ -95,6 +95,8 @@
}
-
(
void
)
statusNotFinishAction
:
(
UIButton
*
)
sender
{
sender
.
userInteractionEnabled
=
false
;
//1 转盘 2 高额水滴任务 3 首页 4 激励视频 5 直客任务链接 6 福利中心"
GYDayTaskModel
*
model
=
self
.
dataSource
[
sender
.
tag
-
0x64
];
switch
(
model
.
reference
)
{
...
...
@@ -105,6 +107,7 @@
self
.
alpha
=
0
;
self
.
bgView
.
alpha
=
0
;
}
completion
:^
(
BOOL
finished
)
{
[
self
removeFromSuperview
];
[(
AppDelegate
*
)[
UIApplication
sharedApplication
].
delegate
ios_luckyTurntable
];
}];
...
...
@@ -147,9 +150,13 @@
default
:
break
;
}
dispatch_after
(
dispatch_time
(
DISPATCH_TIME_NOW
,
(
int64_t
)(
0
.
5
*
NSEC_PER_SEC
)),
dispatch_get_main_queue
(),
^
{
sender
.
userInteractionEnabled
=
true
;
});
}
-
(
void
)
drawTask
:
(
UIButton
*
)
sender
{
sender
.
userInteractionEnabled
=
false
;
GYDayTaskModel
*
model
=
self
.
dataSource
[
sender
.
tag
-
0x64
];
...
...
@@ -171,9 +178,9 @@
[
gift
show
:
nil
];
});
}
sender
.
userInteractionEnabled
=
true
;
}
failure
:^
(
NSError
*
_Nonnull
error
)
{
sender
.
userInteractionEnabled
=
true
;
}];
}
...
...
GYDemo/Pods/Pods.xcodeproj/xcuserdata/mazy.xcuserdatad/xcschemes/xcschememanagement.plist
View file @
fd14a671
...
...
@@ -14,17 +14,17 @@
<
k
e
y
>
BaiduMobAd_SDK.xcscheme_
^#
shared
#^
_
<
/k
e
y
>
<
d
i
c
t
>
<
k
e
y
>
orderHint
<
/k
e
y
>
<
int
e
g
e
r
>
7
<
/int
e
g
e
r
>
<
int
e
g
e
r
>
8
<
/int
e
g
e
r
>
<
/
d
i
c
t
>
<
k
e
y
>
Bytedance-UnionAD.xcscheme_
^#
shared
#^
_
<
/k
e
y
>
<
d
i
c
t
>
<
k
e
y
>
orderHint
<
/k
e
y
>
<
int
e
g
e
r
>
1
0
<
/int
e
g
e
r
>
<
int
e
g
e
r
>
1
3
<
/int
e
g
e
r
>
<
/
d
i
c
t
>
<
k
e
y
>
GDTMobSDK.xcscheme_
^#
shared
#^
_
<
/k
e
y
>
<
d
i
c
t
>
<
k
e
y
>
orderHint
<
/k
e
y
>
<
int
e
g
e
r
>
1
5
<
/int
e
g
e
r
>
<
int
e
g
e
r
>
1
7
<
/int
e
g
e
r
>
<
/
d
i
c
t
>
<
k
e
y
>
KSAdSDK.xcscheme_
^#
shared
#^
_
<
/k
e
y
>
<
d
i
c
t
>
...
...
@@ -41,12 +41,12 @@
<
k
e
y
>
MJExtension.xcscheme_
^#
shared
#^
_
<
/k
e
y
>
<
d
i
c
t
>
<
k
e
y
>
orderHint
<
/k
e
y
>
<
int
e
g
e
r
>
8
<
/int
e
g
e
r
>
<
int
e
g
e
r
>
15
<
/int
e
g
e
r
>
<
/
d
i
c
t
>
<
k
e
y
>
MJRefresh.xcscheme_
^#
shared
#^
_
<
/k
e
y
>
<
d
i
c
t
>
<
k
e
y
>
orderHint
<
/k
e
y
>
<
int
e
g
e
r
>
13
<
/int
e
g
e
r
>
<
int
e
g
e
r
>
7
<
/int
e
g
e
r
>
<
/
d
i
c
t
>
<
k
e
y
>
Masonry.xcscheme
<
/k
e
y
>
<
d
i
c
t
>
...
...
@@ -65,12 +65,12 @@
<
k
e
y
>
RSPodKSAdaper.xcscheme_
^#
shared
#^
_
<
/k
e
y
>
<
d
i
c
t
>
<
k
e
y
>
orderHint
<
/k
e
y
>
<
int
e
g
e
r
>
9
<
/int
e
g
e
r
>
<
int
e
g
e
r
>
16
<
/int
e
g
e
r
>
<
/
d
i
c
t
>
<
k
e
y
>
SigmobAd-iOS.xcscheme_
^#
shared
#^
_
<
/k
e
y
>
<
d
i
c
t
>
<
k
e
y
>
orderHint
<
/k
e
y
>
<
int
e
g
e
r
>
11
<
/int
e
g
e
r
>
<
int
e
g
e
r
>
9
<
/int
e
g
e
r
>
<
/
d
i
c
t
>
<
k
e
y
>
SwiftyStoreKit.xcscheme
<
/k
e
y
>
<
d
i
c
t
>
...
...
@@ -82,17 +82,17 @@
<
k
e
y
>
UMCCommon.xcscheme_
^#
shared
#^
_
<
/k
e
y
>
<
d
i
c
t
>
<
k
e
y
>
orderHint
<
/k
e
y
>
<
int
e
g
e
r
>
1
7
<
/int
e
g
e
r
>
<
int
e
g
e
r
>
1
0
<
/int
e
g
e
r
>
<
/
d
i
c
t
>
<
k
e
y
>
VLionAdSDKPoly.xcscheme_
^#
shared
#^
_
<
/k
e
y
>
<
d
i
c
t
>
<
k
e
y
>
orderHint
<
/k
e
y
>
<
int
e
g
e
r
>
1
2
<
/int
e
g
e
r
>
<
int
e
g
e
r
>
1
4
<
/int
e
g
e
r
>
<
/
d
i
c
t
>
<
k
e
y
>
WechatOpenSDK.xcscheme_
^#
shared
#^
_
<
/k
e
y
>
<
d
i
c
t
>
<
k
e
y
>
orderHint
<
/k
e
y
>
<
int
e
g
e
r
>
1
6
<
/int
e
g
e
r
>
<
int
e
g
e
r
>
1
1
<
/int
e
g
e
r
>
<
/
d
i
c
t
>
<
/
d
i
c
t
>
<
k
e
y
>
SuppressBuildableAutocreation
<
/k
e
y
>
...
...
UnityiOSFarm/Unity-iPhone.xcodeproj/xcuserdata/mazy.xcuserdatad/xcschemes/xcschememanagement.plist
View file @
fd14a671
...
...
@@ -12,7 +12,7 @@
<
k
e
y
>
UnityFramework.xcscheme_
^#
shared
#^
_
<
/k
e
y
>
<
d
i
c
t
>
<
k
e
y
>
orderHint
<
/k
e
y
>
<
int
e
g
e
r
>
1
4
<
/int
e
g
e
r
>
<
int
e
g
e
r
>
1
2
<
/int
e
g
e
r
>
<
/
d
i
c
t
>
<
/
d
i
c
t
>
<
/
d
i
c
t
>
...
...
farm.xcworkspace/xcuserdata/mazy.xcuserdatad/UserInterfaceState.xcuserstate
View file @
fd14a671
No preview for this file type
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