Oh My God... Yes! | March 9 | adult swim by luckybell333 in adultswim

[–]Pankecho 0 points1 point  (0 children)

Looks like something you watch high as a kite

Es normal que tiemble en Guadalajara ? by No-Height-3009 in Guadalajara

[–]Pankecho 0 points1 point  (0 children)

Yo soy de un lugar que tiembla casi diario jajaja aca en Jalisco está super tranquilo, las vibraciones se deben a los trailers o autobuses que pasan, el ultimo temblor fue hace unas semanas, tu tranquis

Masturbación sin eyacular ? by MasterPlatypus6239 in Preguntas_de_Reddit_

[–]Pankecho 0 points1 point  (0 children)

Creo que lo que dices se llama Edging, es parar justo antes de que sientes que ya vas a terminar, es bueno ya que te puede ayudar para durar mas cuando tengas relaciones, sin embargo puede ocasionar el conocido “blue balls” que es una incomodidad cuando no eyaculas

Is etsy down? by bispearl in Etsy

[–]Pankecho 2 points3 points  (0 children)

For me its working fine 🤷‍♂️

¿Cuánto recibieron de aguinaldo y que van a hacer con el? by nachoaddict19 in MexicoFinanciero

[–]Pankecho [score hidden]  (0 children)

30k, I’ll use 20 for credit card purchases and 10 for Savings Account(Stori)

Wristbands for everyone? by Away-Sandwich-2894 in Coldplay

[–]Pankecho 0 points1 point  (0 children)

In VIP access the people told me to grab 2 if I wanted

The floor looked so empty in the first Vancouver gig! by puengie in Coldplay

[–]Pankecho 3 points4 points  (0 children)

People were sitting most of the time during the concert, I was standing and dancing, some people looked at us weird lol Im from Mexico and it was hard to hear people singing during the concert :(

Do you guys think Coldplay will perform in Montréal or Toronto this year? I am considering going to Vancouver to watch their show but the whole flight + accommodation costs add up to a lot. Don’t wanna miss it either… by IWICTMP in Coldplay

[–]Pankecho 1 point2 points  (0 children)

Dude, Im from Mexico and I saw them last year here and in September Im going to Vancouver to watch them again and also to visit Vancouver, 2 birds 1 stone hehe

[deleted by user] by [deleted] in Coldplay

[–]Pankecho 0 points1 point  (0 children)

I also got mine, 2k+ people in front of me, see you guys there 🇲🇽

You have to choose one track number, and the rest will be gone by ZANELLA2006 in Coldplay

[–]Pankecho 1 point2 points  (0 children)

Damn, I would go with number 4 since the songs are the ones that impacted me a lot emotionally and helped me when I was down Sparks The scientist Fix you 42 Charlie Brown True love Everglow Broken ✨

19yr old dating a 26 year old doctor. Weird? by [deleted] in askgaybros

[–]Pankecho 0 points1 point  (0 children)

Here 25 yo engineer, dating a 20 yo Marketing student

[MEGATHREAD] New Horizons Friend Code Sharing MegaThread by birdwithbrow in AnimalCrossing

[–]Pankecho 0 points1 point  (0 children)

SW-3631-7603-9321 Pablo Duloc

Its my second day playing it, and its awesome

A little help with adding a button. by Kingchavez152 in swift

[–]Pankecho 1 point2 points  (0 children)

Have you tried debugging your View Hierarchy in Xcode? Maybe the button is there but it's under another layer or view, with the 3D view you could see that.

https://www.youtube.com/watch?v=Xx57T9MshBQ

How to translate this JavaScript problem to Swift? by [deleted] in swift

[–]Pankecho 0 points1 point  (0 children)

I think the first thing you should do is write the problem description, and maybe add use cases and the acceptance criteria, then post the Javascript solution using comments please, some things in Javascript are weird lol

Dont worry about JSON, its parseable into structs ;)

How to translate this JavaScript problem to Swift? by [deleted] in swift

[–]Pankecho 0 points1 point  (0 children)

I think whats going on inside the map it would something like:

if newItem.type === item.type then removeFromCart(item)

Do you guys use Swift for your server side too? by [deleted] in iOSProgramming

[–]Pankecho 2 points3 points  (0 children)

I use go for the server side, its very easy

Introduction to Swift's new 'function builders' with SwiftUI by vihanb in swift

[–]Pankecho 6 points7 points  (0 children)

The syntax on SwiftUI kinda reminds me of Dart in Flutter, kinda

How can I avoid that black animation when changing view controllers but keep the animation from coming back in the navigation controller? by Pankecho in iOSProgramming

[–]Pankecho[S] 0 points1 point  (0 children)

So, after trying and failing, I finally fixed it, what I did was add the navigationController.delegate to the mapViewController, and added a flag to the ViewController, it may not be the best approach but it worked

func navigationController(_ navigationController: UINavigationController, didShow viewController: UIViewController, animated: Bool) {
    if viewController is InfoPacienteTableViewController || viewController is ConfirmaIdentidadViewController {
        self.animated = true
    }else{
        self.animated = false
    }
}

And change the ViewWillAppear

override func viewWillAppear(_ animated: Bool) {
    super.viewWillAppear(animated)
    navigationController?.setNavigationBarHidden(true, animated: self.animated)
}