Hi,
do you have any advice for quickly building an iOS App's website?
It will be very simple: frontpage, privacy, contact page....
I'm ok with pure html template, php, or wordpress templates, or any other smart way of doing this.
Thanks,
Aldar
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
Hi,
i'm about to submit my app to Testflight review team.
My app requires sign in.
But I only allow sign in from Apple and Facebook.
There is no way I can provide a username / password.
Can the review team sign in from Apple directly?
Hi,
I have added a square image inside a UIButton.
The goal is to have the square image on the left of the button, with space margin around 4 sides of button = 5.
Here is the code:
button.imageView?.contentMode = .scaleAspectFit
button.contentHorizontalAlignment = .left;
button.imageEdgeInsets = UIEdgeInsets(top: 5, left: 5, bottom: 5, right: 5)
and here is the result:
You can notice several problems:
Right margin is > 5 (between button and text)
Left margin > 5
The rest, aspect, and top and bottom margins are fine.
How to have this button well on the left, and the text right next to it?