What is changing, if your doc were already in the cloud ? Nothing new, no new risk. If you are scared, disable iCloud options to keep data on your phone only…
Post
Replies
Boosts
Views
Activity
They do not look at pictures. It computes a "compressed signature" from the image (which by no way can be seen or even decoded to get the original image in anyway). And compares to the signatures of other images from databases to find matches.
All they can say is: you have a photo which signature matches what is in the database. Then of course they can see this photo in the database. But no photo that is not in the database can be visualised.
14.8 security was a rush release. I would not assume it to be available on 15 beta. Anyway, if you're concerned about your data, follow Reck41 advice.
Topic:
App & System Services
SubTopic:
Core OS
Tags:
You've probably hit a system limit. But why do you need to dispatch ? Aren't you already in the main thread ?
Topic:
UI Frameworks
SubTopic:
UIKit
Tags:
Yes, it is possible. See what I posted before (with the screenshot).
Topic:
UI Frameworks
SubTopic:
AppKit
Tags:
Yes, view based is much simpler !
Topic:
UI Frameworks
SubTopic:
AppKit
Tags:
The detailed explanation you got in https://stackoverflow.com/questions/69160053/why-do-animations-not-work-when-deselecting-a-uitableviewcell-in-a-uitableview-a seems relevant: it is a question of how update events are queued in the system. And dispatch changes the way it is handled.
Topic:
UI Frameworks
SubTopic:
UIKit
Tags:
Yes, it is view based. Could you post the complete code of your test, so that we can reproduce ?
Topic:
UI Frameworks
SubTopic:
AppKit
Tags:
TableView may work even with delegate not defined. Did you set the delegate ? In addition, please show the code of IBAction. Sender must be (_ sender: NSTextField)
Topic:
UI Frameworks
SubTopic:
AppKit
Tags:
TapGesture will activate when you tap anywhere in the picker, on a row which may be different from selection, isn't it ? And tapping will not change the selection. That could be misleading. Or pickerTapped must first identify which row was tapped, which is not so easy. Or limit the tap to the center of the picker which is where the selection is.
Topic:
Programming Languages
SubTopic:
Swift
Tags:
"MacCatalyst but I am aware that it's not always the most easy" you're right, but it was designed for this exact goal. It's complex because bridging the 2 OS is not that easy. Maybe, instead of trying to adapt your code you should redesign your app with MacCatalyst. Good luck.
Topic:
UI Frameworks
SubTopic:
SwiftUI
Tags:
OK, you now use the same context.
Topic:
Programming Languages
SubTopic:
Swift
Tags:
Did you ask the question on the Swift Forum ?
Topic:
Programming Languages
SubTopic:
Swift
Tags:
For more fun, change as: let citiesEU = ["Paris", "Toulouse", "London", "Milan", "Berlin", "Rome", "Madrid", "Lisbon", "Athens", "Brussels"]
let citiesUS = ["New York", "San Francisco", "Washington", "Dallas", "Cupertino", "Seattle", "Miami", "Chicago", "Detroit", "Phoenix"] class Responser: NSObject {
//Method to be called
var tag: Int = 0
@objc func printname() {
var value = "" // 0
switch tag {
case 1: value = citiesEU.randomElement() ?? "No EU city" // (1...10).randomElement() ?? 1
case 2: value = citiesUS.randomElement() ?? "No US city" // (11...20).randomElement() ?? 2
default: value = "No city" // 0
}
lbl.text = value // "(value)"
}
}
Topic:
Programming Languages
SubTopic:
Swift
Tags:
Is it a test ? A joke ? A mistake ? A bet ? In any case, not very appropriate for the forum unless you explain your purpose. Have a good day.
What is changing, if your doc were already in the cloud ? Nothing new, no new risk. If you are scared, disable iCloud options to keep data on your phone only…
- Replies
- Boosts
- Views
- Activity
They do not look at pictures. It computes a "compressed signature" from the image (which by no way can be seen or even decoded to get the original image in anyway). And compares to the signatures of other images from databases to find matches.
All they can say is: you have a photo which signature matches what is in the database. Then of course they can see this photo in the database. But no photo that is not in the database can be visualised.
- Replies
- Boosts
- Views
- Activity
14.8 security was a rush release. I would not assume it to be available on 15 beta. Anyway, if you're concerned about your data, follow Reck41 advice.
Topic:
App & System Services
SubTopic:
Core OS
Tags:
- Replies
- Boosts
- Views
- Activity
You've probably hit a system limit. But why do you need to dispatch ? Aren't you already in the main thread ?
Topic:
UI Frameworks
SubTopic:
UIKit
Tags:
- Replies
- Boosts
- Views
- Activity
Yes, it is possible. See what I posted before (with the screenshot).
Topic:
UI Frameworks
SubTopic:
AppKit
Tags:
- Replies
- Boosts
- Views
- Activity
Yes, view based is much simpler !
Topic:
UI Frameworks
SubTopic:
AppKit
Tags:
- Replies
- Boosts
- Views
- Activity
The detailed explanation you got in https://stackoverflow.com/questions/69160053/why-do-animations-not-work-when-deselecting-a-uitableviewcell-in-a-uitableview-a seems relevant: it is a question of how update events are queued in the system. And dispatch changes the way it is handled.
Topic:
UI Frameworks
SubTopic:
UIKit
Tags:
- Replies
- Boosts
- Views
- Activity
Yes, it is view based. Could you post the complete code of your test, so that we can reproduce ?
Topic:
UI Frameworks
SubTopic:
AppKit
Tags:
- Replies
- Boosts
- Views
- Activity
TableView may work even with delegate not defined. Did you set the delegate ? In addition, please show the code of IBAction. Sender must be (_ sender: NSTextField)
Topic:
UI Frameworks
SubTopic:
AppKit
Tags:
- Replies
- Boosts
- Views
- Activity
TapGesture will activate when you tap anywhere in the picker, on a row which may be different from selection, isn't it ? And tapping will not change the selection. That could be misleading. Or pickerTapped must first identify which row was tapped, which is not so easy. Or limit the tap to the center of the picker which is where the selection is.
Topic:
Programming Languages
SubTopic:
Swift
Tags:
- Replies
- Boosts
- Views
- Activity
"MacCatalyst but I am aware that it's not always the most easy" you're right, but it was designed for this exact goal. It's complex because bridging the 2 OS is not that easy. Maybe, instead of trying to adapt your code you should redesign your app with MacCatalyst. Good luck.
Topic:
UI Frameworks
SubTopic:
SwiftUI
Tags:
- Replies
- Boosts
- Views
- Activity
OK, you now use the same context.
Topic:
Programming Languages
SubTopic:
Swift
Tags:
- Replies
- Boosts
- Views
- Activity
Did you ask the question on the Swift Forum ?
Topic:
Programming Languages
SubTopic:
Swift
Tags:
- Replies
- Boosts
- Views
- Activity
For more fun, change as: let citiesEU = ["Paris", "Toulouse", "London", "Milan", "Berlin", "Rome", "Madrid", "Lisbon", "Athens", "Brussels"]
let citiesUS = ["New York", "San Francisco", "Washington", "Dallas", "Cupertino", "Seattle", "Miami", "Chicago", "Detroit", "Phoenix"] class Responser: NSObject {
//Method to be called
var tag: Int = 0
@objc func printname() {
var value = "" // 0
switch tag {
case 1: value = citiesEU.randomElement() ?? "No EU city" // (1...10).randomElement() ?? 1
case 2: value = citiesUS.randomElement() ?? "No US city" // (11...20).randomElement() ?? 2
default: value = "No city" // 0
}
lbl.text = value // "(value)"
}
}
Topic:
Programming Languages
SubTopic:
Swift
Tags:
- Replies
- Boosts
- Views
- Activity
Is it a test ? A joke ? A mistake ? A bet ? In any case, not very appropriate for the forum unless you explain your purpose. Have a good day.
- Replies
- Boosts
- Views
- Activity