xcode tag

271 questions


4 answers
95 views
0
Causes of Line Segment Search Errors

def LinearSearch(N,a):n = len(N)for i in range(n): if N[i] == a: return True else: return FalseN = [13, 16, 23, 45, 54, 58, 76, 91]a = 76an=LinearSearch(N,a)print(ans)The result is false for some re...

2 years ago

1 answers
77 views
0
What is the standard for UIViewController transitions?

What is the standard for the transition between UIViewControllers in swift4xcode10?When I looked into it, I found that many of them connected segue from the xcode storyboard GUI... and that it was dif...

2 years ago

1 answers
84 views
0
I want to make something like a favorite button for an iPhone camera roll.

I would like to make something like a favorite button (heart-shaped button) for iPhone camera roll.The photos I took are placed in the collection view, and when I tap on one of them, the screen transi...

2 years ago

2 answers
60 views
0
How to Use Objective-C Source Files in a Swift Project

From now on, I would like to develop iOS applications with Swift, but I would also like to utilize the source code of Objective-C that I have created so far.How do I configure the Objective-C source c...

2 years ago

1 answers
37 views
0
AppStoreConnect Does Not Display dSYM Downloads

I'd like to download the dSYM of the released app.Download dSYM is not displayed and cannot be downloaded.The settings on the Xcode are as follows.Debug Information Format->Release only DWARF with ...

2 years ago

1 answers
39 views
0
What is the maximum amount of data that UserDefaults can store?

Is it okay to put endless data into UserDefaults?I'm not sure if I should switch to Sqlite or Realm.It would be better to centralize the database, but it would be troublesome if it were an existing ap...

2 years ago

1 answers
108 views
0
Error converting "Swift invokes UIDatePicker from UITextField" to swift3(2)

The NSCalendar.Unit dateToString Method Is Like This code that you answered the other day shows the day of the week in the initial value of the text (GTM+9).After further modification, I ran code like...

2 years ago

1 answers
65 views
0
Allow CollectionView cells to have different identifiers each time

Whenever cellForItemAtIndexPath is called in the CollectionView cell, I want to have a different identifier every time, but I don't know how to do it.Or is it not possible?For example, on the first sc...


1 answers
130 views
0
RealmSwift wants to get a list of "many" of one-to-many relationships

I'm a beginner practicing database operations at realm.Implementation of tag functionality, database designI was able to run the database using this answer.Therefore, I would like to display a list of...

2 years ago

1 answers
73 views
0
Please tell me how to increase the number by one every 0.25 seconds.

I'd like to write a code that says the number increases with time.As shown in the code below, we can increase the number every second, but You cannot increase a decimal number, such as every 0.25 seco...

2 years ago
« - 14 - »

© 2024 OneMinuteCode. All rights reserved.