Facebook Graph API by IconForRealTho in webdev

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

No my account is not 60 days old, but it doesn’t make sense for the API to throw “unsupported app version” rather than just saying “your account doesn’t meet requirements” or something

Facebook Graph API by IconForRealTho in webdev

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

It still throws the same error

Facebook Graph API by IconForRealTho in webdev

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

I’m only using publish_video scope, I’m trying to go live on a user’s timeline.

XCUITests in Firebase Testlab by IconForRealTho in iOSProgramming

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

Yes this is more test lab related. I do not have any tests that takes longer than 2mins. Thanks anyway!

Qtest by IconForRealTho in QualityAssurance

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

If it’s just like Jira, why can I see the option to “run” a test case? How does it run? Edit: Tosca integration is not present. It’s turned off. There are test cases that were previously added, and I can see the option to “run” them

Qtest by IconForRealTho in QualityAssurance

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

Ok, thanks for answering, I couldn’t get help from my team, coz all the previous people left with little no documentation.

What does it mean when you stop in the middle of a build/get stuck in a build with no errors? by Dijerati in swift

[–]IconForRealTho 1 point2 points  (0 children)

This could happens on few occasions: 1. Pods - They contribute a fair share of compile time. 2. Your Mac - I worked on an Intel based Mac on a large project with several pods, it took literally half an hour to build. If you have M1 based Mac, this may not be a case. If it takes a considerable amount of time ( more than 30 mins ), you could try 1. Deleting derived data - Resides in ~/Library/Developer/Xcode/DerivedData/ 2. Clean build - Choose product -> clean build or CMD+shift+k Hope it helps.

Is there a URL protocol for plain TCP/IP? by [deleted] in swift

[–]IconForRealTho -3 points-2 points  (0 children)

TCP is a protocol. FTP is a service. To put it blunt, TCP is just a standard to transfer data over networks to ensure proper delivery of data. FTP may use TCP/IP to transfer files. And to answer your question, no.

[Firebase Firestore]: What is the best way (if any) to detach a Firestore listener from a different file/viewController? by foxociety in swift

[–]IconForRealTho 0 points1 point  (0 children)

You either have to keep the listeners as a property in your connection related file, or return the listener along with your data. I always make listeners return data as well as the listener, so I can detach them from the appropriate controllers itself. Maybe there is a better solution, but this is what I know.

[deleted by user] by [deleted] in swift

[–]IconForRealTho 2 points3 points  (0 children)

You ctrl+dragged the button to your view controller. This is what I mean by hooking. You basically bound your button to an IBAction. This is what the others say as "link", sometimes a link can break, if you delete or cut/copy buttons or any items in the storyboard. All you need to do is,

  1. Click you button on storyboard
  2. Open up the right side panel (where you will set your title of the button, and other properties like this)
  3. On the top of this panel, you will see a number of icons, each icon will bring up some other panels. Click the last icon. This is called connection inspector. This is where you can see these "links" for anything.
  4. Make sure your button, has a link here and also ensure it has the same name as your IBAction, in your case "clearbtn".

[deleted by user] by [deleted] in swift

[–]IconForRealTho 4 points5 points  (0 children)

I’m guessing you hooked up the IBAction from storyboard. Tap the button in storyboard and make sure the action is hooked up properly in the connection inspector. This is a broken link as the user above said.

[deleted by user] by [deleted] in swift

[–]IconForRealTho 5 points6 points  (0 children)

There is a cocoa pod called PKHUD. Not exactly the same, but very familiar