Search results for

show when run

112,702 results found

Post

Replies

Boosts

Views

Activity

AppTrackingTransparency, IDFA, and showing ads
Since installing iOS 14 on my iPhone, none of the AdMob ads in my apps are showing at all. I have watched, re-watched, and read all the documentation about AppTrackingTransparency and it is still not clear at all to me what to expect comes the launch of iOS 14. 1/ For ads to show in all my apps when iOS 14 launches to the public, do I have to update all of my apps for ads to keep showing? 2/ What happens if I do not update my apps before the iOS 14 public launch? Will ads be entirely prevented from showing at all? Or will the apps only show non-personalized ad? Thank you in advance.
2
0
990
Jul ’20
Cell only shows and hides once; and then not able to show again
Hello, I'm trying to display/hide a UIDatePicker embedded in a UITableViewCell. My intention is that the datePicker will start hidden. Then when the user selects the startDate label in the cell above the date picker, the cell's row hight will adjust, making the datePicker visible. Then when the user taps the startDate label again, the datePicker hides. They should be able to do this indefinitely. In this code, the datePicker starts out hidden (as intended), shows when the user selects the StartDate label (as intended) and then hides when the user selects the startDate label again (as intended). However, if the user tries to show the datePicker for a 2nd time, nothing happens. video link: https://youtube.com/shorts/blu1OCBOCiE?feature=share class AddEditLogbookTableViewController: UITableViewController { @IBOutlet var nameTextField: UITextField! @IBOutlet var descriptionTextField: UITextField! @IBOutlet var startDateLabel: UILabel! @IBOutlet var startDateDatePicker: UIDatePicker! var logbook:
1
0
478
Dec ’21
Reply to ARKitFaceExample compiling error
It runs fine on my iPhone 6s [of course it shows a screen that says the device is not supported, but it still compiles and runs without any problems.]And yes, it still doesn't run on any of the simulators I've tried, including iPhone X simulator.I assume this means it will run on iPhone X too when we get our hand on in 4 weeks 😍
Topic: App & System Services SubTopic: Core OS Tags:
Oct ’17
Reply to Installed El Capitan beta 4 and no able to log in
I did all of that in terminal but they all showed that no such file or directory message and also involumes it didn't show Macintosh HD it just showed OS X Base System and .Trashes. Given I never changed the name i'm not sure how that could have changed. When i run disk utility it shows that OS X Base System under external disk images in Apple disk image Media? not is relevant but it also shows several untitled drives underneath that aswell. It shows Macintosh HD under internal.
Topic: App & System Services SubTopic: Core OS Tags:
Aug ’15
UIBezierPath *not* showing?
I am developing a game in which my Locomotive is following a UIBezierPath that mimics an oval shaped Track. The math of the following is not adding up .. if it is, I am obviously not understanding the math of the layout. Bottom line = the following code does not display the UIBezierPath. Here's the code that creates this UIBezierPath .. please note the math in the comments: func createTrainPath() { trackRect = CGRect(x: 0.0, y: 0.0 - roomHeight/2 + tracksHeight, width: tracksWidth, height: tracksHeight) // trackRect = (0.0, -207.0, 940.0, 476.0) // portrait // trackRect = (0.0, -274.0, 470.0, 238.0) // landscape print(trackRect = (trackRect!)) trackPath = UIBezierPath(ovalIn: trackRect) let theTrackShapeNode = SKShapeNode(path: trackPath.cgPath, centered: true) theTrackShapeNode.zPosition = 100 // for testing theTrackShapeNode.position = myTracks.position theTrackShapeNode.lineWidth = 4.0 theTrackShapeNode.strokeColor = SKColor.blue if let ourScene = GameScene(fileNamed: GameScene) { print(here) // this shows
3
0
728
Dec ’23
Show notification window from daemon
Hello,I have a background daemon which is launched by launchd at system startup. I need to show a notification window to reports some event occationally. My snippet is as follows.CFStringRef message = CFStringCreateWithCString(NULL, filePath, kCFStringEncodingUTF8); CFUserNotificationDisplayNotice( 3.0f, kCFUserNotificationStopAlertLevel | kCFUserNotificationNoDefaultButtonFlag, NULL, NULL, NULL, CFSTR(alert), message, NULL); CFRelease(message);The CFUserNotificationDisplayNotice returns 0, but no window shows up.I cannot find much information about how to use this API.Could anybody show me the correct way to show some UI from a daemon? Thanks!
1
0
734
Feb ’20