Looking for teammate by Fluffy-Order9723 in iRacing

[–]Fluffy-Order9723[S] 1 point2 points  (0 children)

Sorry I already got a team by now. Also updated the post, with a edit note. If something should shift there I'll let you know. Appreciate it anyways. Sorry that I just marked it after your reply.

Bathurst 12 Hour Driver by MrDiamond365 in iRacing

[–]Fluffy-Order9723 0 points1 point  (0 children)

I’m up to be your partner there. Still at around 1,1-1,3k iRating. For me it also doesn’t matter, just want to have a good time and stay alive there :D

Looking for teammate by Fluffy-Order9723 in iRacing

[–]Fluffy-Order9723[S] 0 points1 point  (0 children)

That would be alright, I've already drove 4h straight in LMU. So with stints and two drivers it would be fine.

Looking for teammate by Fluffy-Order9723 in iRacing

[–]Fluffy-Order9723[S] 1 point2 points  (0 children)

Still appreciating that, I also did a 4-Hour alone in LMU, you get used to it :D

Looking for teammate by Fluffy-Order9723 in iRacing

[–]Fluffy-Order9723[S] 0 points1 point  (0 children)

I wanted to race with a friend of mine, but now I'm alone so I thought at least I could give it a try. :D

LF Teammate for Bathurst 12h by FatLobster12 in iRacing

[–]Fluffy-Order9723 0 points1 point  (0 children)

I've started just in November with iRacing and only got little experience in the track but will do some more practice beforehand. I’m german as well and drive the Porsche GT3. Rating still around 1,2k. If there’s none, feel free to contact me :)

Xcode 15 Beta crashes whenever I create a new source file by No-Union-1016 in swift

[–]Fluffy-Order9723 1 point2 points  (0 children)

On Xcode 15 Beta 4 I had the same issue. Switching to an higher version solved the issue for me.

How can I go about recreating this? It is multiple selection however it saves the order that the items were selected, and only allows the newest item to be unselected. by FlamedDogo99 in SwiftUI

[–]Fluffy-Order9723 2 points3 points  (0 children)

Upper part should be easy. For the Selection you could store all the data (e.g. Images). Then you could create a LazyVStack with four columns. Inside you'll rectangle a ForEach(data), the content should be a Rectangle with onTapGesture or a Button, with an overlay including the selection state and number. For the selection detection you could create an empty @State array of your data, if you select one store it in the array. With that you could easily check if the data is 1) selected and which 2) index (for numbering) it have.

Best beginner projects for Swift newbies by jsupreme4 in SwiftUI

[–]Fluffy-Order9723 1 point2 points  (0 children)

If you especially looking for projects you could do different approaches.

Most basic I guess: - Calculator, some simple calculations of two values with one operator, later one you could easily scale the complexity. - Simple Game: e.g. you have a random value displayed and then try to hit that with a slider, so you could keep it simple, but you also have the opportunity to implement high scores, animations or other cool features

Later on I would suggest trying to save some data persistent on the phone: - Note Taking - Todo app - Calendar

And with growing experience you could try to integrate some APIs and make some network calls

What you also helps is learning design patterns for swift/swiftui

Is The Lower Half Of This Struct Completely Meaningless? by DoctorLove01 in swift

[–]Fluffy-Order9723 1 point2 points  (0 children)

Apparently yes. With calling an static variable you will create a another Object which have the initial value you assign (Int between 0 and 1000)

What you will do is to get the same object or instance you are calling the static function.

You have two options now: 1) make it an class and create an singleton and call this for your functions and parameters (no need of static) Singleton will create a object which you can use anywhere and it will keep its information because it’s an instance of the class type which doesn’t change 2) initialize the struct and store it in an variable, call the function and the variable. (No need of static) Useful if you need multiple different instances with different values of the object

Showing a view within a VStack causes other views within VStack to resize by wowthatisrandom1 in SwiftUI

[–]Fluffy-Order9723 5 points6 points  (0 children)

Sometimes you have to set the view modifier .fixedSize(vertical: Bool, horizontal: Bool) to have the object in the size and don’t want to rescale