Search results for

“translate scheme”

6,670 results found

Post

Replies

Boosts

Views

Activity

Xcode Schemes?
I'm developing an iOS app in Xcode 13.1. I set the scheme (I think that's what says iPad Air 2 in the screenshot) to use a given simulator, but it I exit Xcode and restart, it sometimes changes to another simulator. Is there a way to get Xcode to remember the setting? Thanks, Mark
0
0
479
Oct ’21
Is the code from Reality-Composer-generated animations 'translated' into Xcode? Can I SEE this somewhere?
I am struggling with importing a model generated on Reality Composer into Xcode. One thing that is not at all clear is whether the code is accessible. From what I was able to understand, we need to name each scene and understand it as an 'anchor' and also name each object and understand it as an entity. HOWEVER I am finding it hard to grasp how exactly to access the code generated by Reality Composer... it would be so much easier if I could actually view it somehow. I am starting to become extremely frustrated and although I love what I created with Reality Composer, I am better off doing everything manually since it doesn't seem to work so easily the goal is to make reality composer models functional INSIDE and actual app...
0
0
696
Feb ’23
Reply to Core Data with PostgreSQL physical store instead of SQLite
To be really honest, if you have years of data already stored in PostreSQL database you probably need to stop and think about how you're trying to access the data.There's a difference in approach and perspective between an object store (what CoreData is really trying to be) and relational database (what SQL databases try to be). It's possible to implement object stores using relational databases, but trying to access relational database using object store tools alternates between 'it works but there's a lot of excess stuff going on' and 'all advantages lost through translation'.The CoreData persistent store option to use an sqlite database is the put our object store data into a relational database, using machine generated table names, row names, and schema. It's not translate an SQL database to the CoreData system.There are some SQL databases that are going to be trivial to map into a simple entity system. There are other SQL database schemes aren't going to work very well at all.
May ’16
Sort Xcode Schemes
Hey! I'm using CMake to generate an Xcode project with a large amount of targets. (I make audio plugins, there is a lot of plugins, and each has maybe 5 targets per project) Everything looks great however -- the Scheme list in Xcode seems to have no correlation to the targets list which is nicely alpha sorted. Is there a way to get the schemes list to sort alphabetically, it works to sort them my hand in the manage schemes area, but the Xcode projects gets torn down and rebuilt often so it's not feasible to do it this way. Thanks, Jacob
1
0
539
Mar ’22
SystemPreferences URL Scheme
We often need to guide users to open system preference panels to grant software permissions. From network archives, we found some URL Schemes for system settings panels that correctly allow users to quickly access specific settings locations directly from the software UI. Recently, we needed users to grant software permissions in System Preferences - Security & Privacy - App Management. However, I cannot find the URL Scheme for this panel. Could the developers provide it? Below are some of the existing panel URL Schemes for reference: • System Preferences: x-apple.systempreferences: • Network: x-apple.systempreferences:com.apple.preference.network • Sound: x-apple.systempreferences:com.apple.preference.sound • Displays: x-apple.systempreferences:com.apple.preference.displays • Security & Privacy: x-apple.systempreferences:com.apple.preference.security • Accessibility: x-apple.systempreferences:com.apple.preference.security?Privacy_Accessibility
1
0
1.2k
Aug ’24
3D model movement translation causing unpredictable model explosion. (video)
link to video showing problem: https://youtu.be/XkmTYczgwQo I have a usdz file of a prefab house and I'm trying to move an object on the site to the 0,0,0 location. The object represents a peice of paper you would set on the dirt like an image target. Anyway when I do this the model seems to explode when I do a usdz file export. Thanks for your help.
0
0
632
Oct ’21
Reply to Base localization
'Base' isn't counted as a localization/separate lang - it's a scheme that your translations are based on.From the docs: https://developer.apple.com/library/ios/documentation/MacOSX/Conceptual/BPInternational/InternationalizingYourUserInterface/InternationalizingYourUserInterface.html#//apple_ref/doc/uid/10000171i-CH3-SW2-=-Using Base InternationalizationBase internationalization separates user-facing strings from .storyboard and .xib files. It relieves localizers of the need to modify .storyboard and .xib files in Interface Builder. Instead, an app has just one set of .storyboard and .xib files where strings are in the development language—the language that you used to create the .storyboard and .xib files. These .storyboard and .xib files are called the base internationalization. When you export localizations, the development language strings are the source that is translated into multiple languages. When you import localizations, Xcode generates language-specific strings files for
Jan ’16
Supported URL Schemes
Some Apple URL schemes are documented for third-party use. It’s fine to use those URL schemes for their intended purpose. Other Apple URL schemes are not officially documented. Their use is unsupported. If you rely on such implementation details, things might work, or they might not, and that state might change over time. IMPORTANT If you ship via the App Store, pay attention to clause 2.5.1 of the App Review Guidelines. The Apple URL scheme documentation is not always easy to find. I’m aware of the following: Apple URL Scheme Reference QA1924 Opening Keyboard Settings from a Keyboard Extension [This Q&A was retired years ago.] Preparing your app to be the default messaging app The doc comments for es_new_client in Developer > Bug Reporting describes the applefeedback scheme Additionally, as questions about this most commonly crop up in the context of opening Settings (System Settings on macOS), I wanted to highlight the following: UIApplication.op
0
0
2.3k
Aug ’24
URL Schemes on tvOS?
Are there URL schemes for tvOS?
Replies
5
Boosts
0
Views
3.2k
Activity
Sep ’15
Xcode Schemes?
I'm developing an iOS app in Xcode 13.1. I set the scheme (I think that's what says iPad Air 2 in the screenshot) to use a given simulator, but it I exit Xcode and restart, it sometimes changes to another simulator. Is there a way to get Xcode to remember the setting? Thanks, Mark
Replies
0
Boosts
0
Views
479
Activity
Oct ’21
Is the code from Reality-Composer-generated animations 'translated' into Xcode? Can I SEE this somewhere?
I am struggling with importing a model generated on Reality Composer into Xcode. One thing that is not at all clear is whether the code is accessible. From what I was able to understand, we need to name each scene and understand it as an 'anchor' and also name each object and understand it as an entity. HOWEVER I am finding it hard to grasp how exactly to access the code generated by Reality Composer... it would be so much easier if I could actually view it somehow. I am starting to become extremely frustrated and although I love what I created with Reality Composer, I am better off doing everything manually since it doesn't seem to work so easily the goal is to make reality composer models functional INSIDE and actual app...
Replies
0
Boosts
0
Views
696
Activity
Feb ’23
Reply to Core Data with PostgreSQL physical store instead of SQLite
To be really honest, if you have years of data already stored in PostreSQL database you probably need to stop and think about how you're trying to access the data.There's a difference in approach and perspective between an object store (what CoreData is really trying to be) and relational database (what SQL databases try to be). It's possible to implement object stores using relational databases, but trying to access relational database using object store tools alternates between 'it works but there's a lot of excess stuff going on' and 'all advantages lost through translation'.The CoreData persistent store option to use an sqlite database is the put our object store data into a relational database, using machine generated table names, row names, and schema. It's not translate an SQL database to the CoreData system.There are some SQL databases that are going to be trivial to map into a simple entity system. There are other SQL database schemes aren't going to work very well at all.
Replies
Boosts
Views
Activity
May ’16
Sort Xcode Schemes
Hey! I'm using CMake to generate an Xcode project with a large amount of targets. (I make audio plugins, there is a lot of plugins, and each has maybe 5 targets per project) Everything looks great however -- the Scheme list in Xcode seems to have no correlation to the targets list which is nicely alpha sorted. Is there a way to get the schemes list to sort alphabetically, it works to sort them my hand in the manage schemes area, but the Xcode projects gets torn down and rebuilt often so it's not feasible to do it this way. Thanks, Jacob
Replies
1
Boosts
0
Views
539
Activity
Mar ’22
url scheme safari
what is the url scheme safari ? I tried this way: window.open(`com-apple-mobilesafari-tab:https://mysite.ao}/?a`, '_blank', 'popup');
Topic: Safari & Web SubTopic: General Tags:
Replies
1
Boosts
0
Views
1.9k
Activity
Sep ’23
URL scheme on tvOS
How to create a new URL Scheme on tvOS?http://eduardosanti.com.br/scheme.png
Replies
1
Boosts
0
Views
827
Activity
Jul ’16
SystemPreferences URL Scheme
We often need to guide users to open system preference panels to grant software permissions. From network archives, we found some URL Schemes for system settings panels that correctly allow users to quickly access specific settings locations directly from the software UI. Recently, we needed users to grant software permissions in System Preferences - Security & Privacy - App Management. However, I cannot find the URL Scheme for this panel. Could the developers provide it? Below are some of the existing panel URL Schemes for reference: • System Preferences: x-apple.systempreferences: • Network: x-apple.systempreferences:com.apple.preference.network • Sound: x-apple.systempreferences:com.apple.preference.sound • Displays: x-apple.systempreferences:com.apple.preference.displays • Security & Privacy: x-apple.systempreferences:com.apple.preference.security • Accessibility: x-apple.systempreferences:com.apple.preference.security?Privacy_Accessibility
Replies
1
Boosts
0
Views
1.2k
Activity
Aug ’24
3D model movement translation causing unpredictable model explosion. (video)
link to video showing problem: https://youtu.be/XkmTYczgwQo I have a usdz file of a prefab house and I'm trying to move an object on the site to the 0,0,0 location. The object represents a peice of paper you would set on the dirt like an image target. Anyway when I do this the model seems to explode when I do a usdz file export. Thanks for your help.
Replies
0
Boosts
0
Views
632
Activity
Oct ’21
Text selection is buggy when using "transform: translate(XXpx, YYpx)" style in iframe
Example of html which represents issue is here http://jsfiddle.net/e5g1Lv6b
Replies
0
Boosts
0
Views
571
Activity
Sep ’18
Refferal Scheme cost
On a premium based app, if subscriptions to the app are offered free as part of a refferal scheme; does Apple still take commission on that free subscription?
Replies
0
Boosts
0
Views
281
Activity
Apr ’17
Color scheme of the Model.
hey, great tech. what does the color scheme encode on the model(greenish to blueish). just asthetics?
Replies
1
Boosts
0
Views
327
Activity
Jun ’20
Reply to Base localization
'Base' isn't counted as a localization/separate lang - it's a scheme that your translations are based on.From the docs: https://developer.apple.com/library/ios/documentation/MacOSX/Conceptual/BPInternational/InternationalizingYourUserInterface/InternationalizingYourUserInterface.html#//apple_ref/doc/uid/10000171i-CH3-SW2-=-Using Base InternationalizationBase internationalization separates user-facing strings from .storyboard and .xib files. It relieves localizers of the need to modify .storyboard and .xib files in Interface Builder. Instead, an app has just one set of .storyboard and .xib files where strings are in the development language—the language that you used to create the .storyboard and .xib files. These .storyboard and .xib files are called the base internationalization. When you export localizations, the development language strings are the source that is translated into multiple languages. When you import localizations, Xcode generates language-specific strings files for
Replies
Boosts
Views
Activity
Jan ’16
Supported URL Schemes
Some Apple URL schemes are documented for third-party use. It’s fine to use those URL schemes for their intended purpose. Other Apple URL schemes are not officially documented. Their use is unsupported. If you rely on such implementation details, things might work, or they might not, and that state might change over time. IMPORTANT If you ship via the App Store, pay attention to clause 2.5.1 of the App Review Guidelines. The Apple URL scheme documentation is not always easy to find. I’m aware of the following: Apple URL Scheme Reference QA1924 Opening Keyboard Settings from a Keyboard Extension [This Q&A was retired years ago.] Preparing your app to be the default messaging app The doc comments for es_new_client in Developer > Bug Reporting describes the applefeedback scheme Additionally, as questions about this most commonly crop up in the context of opening Settings (System Settings on macOS), I wanted to highlight the following: UIApplication.op
Replies
0
Boosts
0
Views
2.3k
Activity
Aug ’24
How to select a scheme that builds a target
Select a scheme that builds a target which contains the current file, or add this file to a target that is built by the current scheme.
Replies
0
Boosts
0
Views
664
Activity
May ’21