Hi Guys,
I saw in iOS 18 (Photos App) that there are buttons (in an scrollview) below the navigation title and inside the navigation bar.
Is there an new API or an method to "clone" this UI without using:
.safeAreaInset(edge: .top, content: {
})
Thanks in advance for any feedback and help!
Post
Replies
Boosts
Views
Activity
Hey there,
I'm trying to decode an json with an dynamic dict as value.
eg.
"results": [
{
"id": 1799,
"created_at": "2024-05-09T14:21:13.289655Z",
"updated_at": "2024-05-10T11:54:25.484537Z",
"email": "test@test.testh",
"name": "Test",
"attributes": {
"name": {
"firstname": "max",
"lastname": "mustermann"
},
"anboolen": false,
"anNumber": 1,
"anString": "Test"
}
}
]
The dictionary "attributes" is always an dictionary but the content inside could be everything.
for the container of results I already created an struct and using JSONDecoder to decode, but now I have the issue with the attributes part.
Can anyone help me with this issue?
Thanks in advance!
Hi together,
i have truble to parse an json with an array like following:
"data": [
[
0000000000,
[
{
"count": 0
}
]
],
[
0000000000,
[
{
"count": 0
}
]
]
],
Can someone help me to parse that with the this?
Thanks
Hi peoples,
i have a problem to sign the wallet passes
do you know how to fix this error?
Warning: unable to build chain to self-signed root for signer "Pass Type ID: ++++++++"
I followed the steps from this documentation: https://developer.apple.com/library/archive/documentation/UserExperience/Conceptual/PassKit_PG/YourFirst.html#//apple_ref/doc/uid/TP40012195-CH2-SW1
The previous named error is shown on this step:
To sign and compress the pass, use the signpass tool to sign the pass package. In Terminal, run the following commands:
cd ~/Documents
./signpass -p Lollipop.pass
KR
Clemens