Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Login
Remember
Register
Ask
Q&A
All Activity
Hot!
Unanswered
Tags
Users
Ask a Question
Ask a Question
Categories
All categories
Topic[话题] (13)
Life[生活] (4)
Technique[技术] (2.1m)
Idea[创意] (3)
Jobs[工作] (2)
Others[杂七杂八] (18)
Code Example[编程示例] (0)
Recent questions tagged Swift
0
votes
757
views
1
answer
swift - Should conditional compilation be used to cope with difference in CGFloat on different architectures?
In answering this earlier question about getting a use of ceil() on a CGFloat to compile for all architectures, I ... not as "icky") solution? See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
swift
0
votes
694
views
1
answer
swift - How do you use the appropriate color class for the current platform?
I'm trying to share my Scene Kit code across iOS and OS X, but the API calls that accept colors (and ... in Swift without duplicating the code? See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
swift
0
votes
983
views
1
answer
swift - PNG/JPEG representation from CIImage always returns nil
I'm currently making a photo editing app. When a photo is selected by the user, it is automatically converted ... what code should be used. See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
swift
0
votes
1.1k
views
1
answer
swift - Projecting the ARKit face tracking 3D mesh to 2D image coordinates
I am collecting face mesh 3D vertices using ARKit. I have read: Mapping image onto 3D face mesh and ... suggestions? Thanks in advance! See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
swift
0
votes
1.2k
views
1
answer
swift - iOS 11 Floating TableView Header
Have an app going with multiple sections, a few rows per section when "expanded", none when "collapsed". Each ... there's that. Any ideas? See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
swift
0
votes
771
views
1
answer
swift - Firebase snapshot.key not returning actual key?
I have a query that searches for a user based on user ID. usersRef.queryOrderedByChild("email").queryEqualToValue(email ... { print(child.key) See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
swift
0
votes
813
views
1
answer
swift - Swift3 optionals chaining in IF conditions bug?
This code worked just fine in Swift 2.3 and I don't understand why I have to unwrap TestClass to check if number ... test?.optionalInt > 4 { } See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
swift
0
votes
1.1k
views
1
answer
swift - How to access NSWindow from @main App using only SwiftUI?
At this answer the solution work for Scene plus swiftUI. However using @main like: @main struct MyApp: App ... to perform an authentication. See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
swift
0
votes
735
views
1
answer
swift - Why is the shorthand argument name $0 returning a tuple of all parameters?
I was trying to define a variable that can hold a closure and ran into some difficulties using Swift's ... why this would be happening. See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
swift
0
votes
652
views
1
answer
swift - Why are doubles printed differently in dictionaries?
let dic : [Double : Double] = [1.1 : 2.3, 2.3 : 1.1, 1.2 : 2.3] print(dic)// [2. ... more than 2.2999999999999998, 1.2 is just 1.2 See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
swift
0
votes
798
views
1
answer
swift - Get Description of Emoji Character
Each Emoji has a description that you can see in Mac OS's ??Space special character picker. There's a list ... OPEN MOUTH AND SMILING EYES". See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
swift
0
votes
741
views
1
answer
swift - Use reserved keyword a enum case
Is it possible to use a reserved keyword as enum case? For example: enum MyEnum { case Self // compiler ... Is there anything similar in swift? See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
swift
0
votes
1.1k
views
1
answer
swift - Saving WebView to PDF returns blank image?
I'm trying to figure out how to save a WebView to a PDF and totally stuck, would really appreciate some ... capture the SubView? Any ideas? See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
swift
0
votes
745
views
1
answer
swift - Generic NSOperation subclass loses NSOperation functionality
Today I've met one weird issue when I was trying to 'generalize' my 'CoreData importing operations'. It ... Am I missing something here? See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
swift
0
votes
1.0k
views
1
answer
swift - How can I convert an array to a tuple?
I just want to convert an array into a tuple in Swift; something like the following: >>> myArray = [1,2,3,4,5] ... , so I am very, very new). See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
swift
0
votes
691
views
1
answer
swift - Array element cannot be bridged to Objective-C
I have this code that creates a view and applies a gradient to it. import UIKit import QuartzCore let rect : CGRect ... and how do I solve this? See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
swift
0
votes
645
views
1
answer
swift - The "prefs" URL Scheme is not working in iOS 10 (Beta 1 & 2)
I can't get the "prefs" URL Scheme to work in iOS 10 (Beta 1). It's set up correctly since ... the "Settings" button does absolutely nothing. See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
swift
0
votes
498
views
1
answer
swift - Why do Self and self sometimes refer to different types in static functions?
Recently I have been developing multiple heavily protocol-oriented application frameworks with Swift and noticed a few ... be of SomeChildClass? See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
swift
0
votes
1.0k
views
1
answer
swift - google maps iOS SDK: custom icons to be used as markers
The Android API has a very convenient class for this, IconGenerator. Using the IconGenerator in my Android app, I ... // map is a GMSMapView See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
swift
0
votes
1.2k
views
1
answer
swift - UIBezierPath: How to add a border around a view with rounded corners?
I am using UIBezierPath to have my imageview have round corners but I also want to add a border to the ... along with my current code? See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
swift
0
votes
962
views
1
answer
swift - How do you use .enumerated() with ForEach in SwiftUI?
Here's a simple SwiftUI List that works as expected: struct App: View { let items = Array(100...200) var body: ... ' How do I make this work? See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
swift
0
votes
600
views
1
answer
swift - UIWebView dynamic content size
I've been looking around and wasnt able to see any swift related ways to do this. I'm trying to get ... = jobSkillView.frame.size.height } See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
swift
0
votes
821
views
1
answer
swift - iOS13 Navigation bar large titles not covering status bar
On ios13, with iphone x, the large title navigation does not cover the status bar however when scrolling and ... why this is happening. Cheers See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
swift
0
votes
1.1k
views
1
answer
swift - why do i get "Must translate autoresizing mask into constraints to have _setHostsLayoutEngine:YES" in xcode 6 beta
I have the following code in a swift UITableViewController, but i get a "Must translate autoresizing mask into ... am i doing wrong? See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
swift
0
votes
645
views
1
answer
swift - How to initialize a struct from a json object
HI i am new to swift any idea . How to initialize a struct from a json object . i could not figure out how can i do ... "] as? String ?? "" } } See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
swift
0
votes
898
views
1
answer
swift - Extension may not contain stored property but why is static allowed
Extension cannot contain stored property, but why then can static stored property be defined within extension? I also didn ... test2 = "Test2" } See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
swift
0
votes
614
views
1
answer
swift - Is SwiftUI backwards-compatible with iOS 12.x and older?
If I have an app made with SwiftUI, will it work for iOS below iOS 13? See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
swift
0
votes
705
views
1
answer
swift - How to access files in iCloud Drive from within my iOS app?
Is there a way to choose file from iCloud Drive similar way to UIImagePickerController()? See Question&Answers more detail:os...
asked
Oct 17, 2021
in
Technique[技术]
by
深蓝
(
71.8m
points)
swift
Page:
« prev
1
...
24
25
26
27
28
29
30
31
32
33
34
...
70
next »
Ask a question:
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question
Just Browsing Browsing
[1] 为什么会报Uncaught SyntaxError: Unexpected token '<'错误?
[2] mysql判断数据字段表是否已生成,生成侧不在生成
[3] echarts里的配置项很多都是重复的,有什么办法可以将通用的部分抽离出来方便复用吗?
[4] js中怎么把像"10月2日 23:23:34开售"之类的字符串直接转成时间戳的函数?
[5] branching and merging - Github: How to auto-merge to development branch from release branch?
[6] 如何去除复制过来的特殊空字符问题?
[7] Vue:Duplicate keys detected This may cause an update error.
[8] amazon cloudformation - Serverless - AWS Cloud Formation - Cross Stack Circular Dependencies
[9] python - Substract rows in array without loops
[10] mat的OQL语句查询结果如何解码
2.1m
questions
2.1m
answers
60
comments
57.0k
users
Most popular tags
javascript
python
c#
java
How
android
c++
php
ios
html
sql
r
c
node.js
.net
iphone
asp.net
css
reactjs
jquery
ruby
What
Android
objective
mysql
linux
Is
git
Python
windows
Why
regex
angular
swift
amazon
excel
algorithm
macos
Java
visual
how
bash
Can
multithreading
PHP
Using
scala
angularjs
typescript
apache
spring
performance
postgresql
database
flutter
json
rust
arrays
C#
dart
vba
django
wpf
xml
vue.js
In
go
Get
google
jQuery
xcode
jsf
http
Google
mongodb
string
shell
oop
powershell
SQL
C++
security
assembly
docker
Javascript
Android:
Does
haskell
Convert
azure
debugging
delphi
vb.net
Spring
datetime
pandas
oracle
math
Django
联盟问答网站-Union QA website
Xstack问答社区
生活宝问答社区
OverStack问答社区
Ostack问答社区
在这了问答社区
在哪了问答社区
Xstack问答社区
无极谷问答社区
TouSu问答社区
SQlite问答社区
Qi-U问答社区
MLink问答社区
Jonic问答社区
Jike问答社区
16892问答社区
Vigges问答社区
55276问答社区
OGeek问答社区
深圳家问答社区
深圳家问答社区
深圳家问答社区
Vigges问答社区
Vigges问答社区
在这了问答社区
DevDocs API Documentations
Xstack问答社区
生活宝问答社区
OverStack问答社区
Ostack问答社区
在这了问答社区
在哪了问答社区
Xstack问答社区
无极谷问答社区
TouSu问答社区
SQlite问答社区
Qi-U问答社区
MLink问答社区
Jonic问答社区
Jike问答社区
16892问答社区
Vigges问答社区
55276问答社区
OGeek问答社区
深圳家问答社区
深圳家问答社区
深圳家问答社区
Vigges问答社区
Vigges问答社区
在这了问答社区
在这了问答社区
DevDocs API Documentations
Xstack问答社区
生活宝问答社区
OverStack问答社区
Ostack问答社区
在这了问答社区
在哪了问答社区
Xstack问答社区
无极谷问答社区
TouSu问答社区
SQlite问答社区
Qi-U问答社区
MLink问答社区
Jonic问答社区
Jike问答社区
16892问答社区
Vigges问答社区
55276问答社区
OGeek问答社区
深圳家问答社区
深圳家问答社区
深圳家问答社区
Vigges问答社区
Vigges问答社区
在这了问答社区
DevDocs API Documentations
广告位招租
...