-
Notifications
You must be signed in to change notification settings - Fork 104
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Maintenance: Remove isViewDidLoad, rework iPad corner info and detail view #1041
Open
wutschel
wants to merge
3
commits into
xbmc:master
Choose a base branch
from
wutschel:rework_isviewdidload
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
wutschel
changed the title
Maintenance: Remove isViewDidLoad and rework iPad corner info
Maintenance: Remove isViewDidLoad, rework iPad corner info and detail view
Apr 13, 2024
wutschel
force-pushed
the
rework_isviewdidload
branch
2 times, most recently
from
April 21, 2024 12:15
40345cb
to
29eeded
Compare
Causes trouble with collection view as "last mode" for a view. In this case the layout is not correctly done. |
wutschel
force-pushed
the
rework_isviewdidload
branch
from
April 21, 2024 13:20
29eeded
to
aca1440
Compare
wutschel
force-pushed
the
rework_isviewdidload
branch
from
May 11, 2024 15:22
aca1440
to
ae3edfd
Compare
wutschel
force-pushed
the
rework_isviewdidload
branch
2 times, most recently
from
May 18, 2024 09:03
83dd487
to
e90d3e7
Compare
wutschel
force-pushed
the
rework_isviewdidload
branch
3 times, most recently
from
June 17, 2024 07:01
79a96ab
to
bc0d5ed
Compare
wutschel
force-pushed
the
rework_isviewdidload
branch
2 times, most recently
from
June 24, 2024 07:43
f2e4c61
to
04d4445
Compare
wutschel
force-pushed
the
rework_isviewdidload
branch
3 times, most recently
from
August 14, 2024 18:04
982503e
to
6952e5e
Compare
wutschel
force-pushed
the
rework_isviewdidload
branch
3 times, most recently
from
September 18, 2024 19:05
63a25c0
to
36b484b
Compare
wutschel
force-pushed
the
rework_isviewdidload
branch
2 times, most recently
from
September 25, 2024 19:01
899ce33
to
95bb89b
Compare
wutschel
force-pushed
the
rework_isviewdidload
branch
2 times, most recently
from
October 13, 2024 14:26
127a0f8
to
74dc128
Compare
wutschel
force-pushed
the
rework_isviewdidload
branch
from
October 18, 2024 15:47
74dc128
to
44d832c
Compare
kambala-decapitator
approved these changes
Oct 27, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fine in general
Found a layout issue with this now, obviously was kept open for too long. Cannot merge and mark it as draft again. |
wutschel
force-pushed
the
rework_isviewdidload
branch
2 times, most recently
from
October 27, 2024 21:04
a81f1be
to
c88a131
Compare
Now iPad corner info only requires layout for iPad by adding a fixed space programmatically instead of adding it to xib and removing it for iPhone.
- Use descriptive ivar name - Simplify code inside condition check - Add detailed comment
wutschel
force-pushed
the
rework_isviewdidload
branch
from
November 1, 2024 18:30
c88a131
to
33898fa
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
This PR does some refactoring to simplify the state machine and logic.
isViewDidLoad
in DetailViewController. Now iPad corner info only requires layout for iPad by adding a fixed space programmatically instead of adding it to xib and removing it for iPhone.isViewDidLoad
in ShowInfoViewController. Now a check is done insidecreateInfo
to only run the layout once.Summary for release notes
Maintenance: Remove isViewDidLoad, rework iPad corner info and detail view