Post

Replies

Boosts

Views

Activity

Ability to add numbers
I want to make something that adds numbers over and over again. If you add 50 at the beginning, it is saved in the core data, and if you add 80 again later, I want 130 to be saved in the core data right away. How do I store the stored value directly in Core Data and add another number to that data?
1
0
512
Apr ’22
I would like to see a project with the source code of the iPhone Siri Shortcut App.
hello. I'm trying to create a simple finance-related application that combines gathering and core data, and the default iPhone application, Shortcuts application, contains everything I need to create. However, the production period is expected to take more than one year. I 'm running out of time... Where can I find the source code?
0
0
652
Apr ’22
Building a custom keyboard
I'm trying to make a keyboard that conforms to Apple's guidelines. I need to change the key layout like an app in the App Store, but I can't find any documentation or information about it. Everyone leaves the keyboard instruction link and runs away. Can you help me? https://apps.apple.com/kr/app/slyder/id1121553033
Topic: UI Frameworks SubTopic: UIKit Tags:
1
0
620
May ’22
Designing a custom keyboard
I am trying to make a keyboard themed app. I created a custom keyboard file through the target, but the file I created does not have keyboard keys. How can I create a keyboardView and put the image I made into the keyboardView? There are too few related materials, so I need the help of experts.
Topic: UI Frameworks SubTopic: UIKit Tags:
2
0
754
May ’22
Custom keyboard and xib coding
We are making custom keyboards. 1.I have created a keyboard project. 2.I created a custom keyboard file through the target. 3.I can add my keyboard to the system keyboard settings through the simulator. 4.When I open my keyboard in the simulator, nothing happens. 5.I have created a xib file. 6.I added a key image created by adding a media file to the custom keyboard folder and made it into a button. 7.I added it to xib, but the key doesn't show up in the simulator. 8.I'm trying to code by connecting my new button to the view, but the drag doesn't work at all. 9.I have no idea what files to create afterwards and how to code them. 10.I have created an image of a button A and I want it to show on my custum keyboard, and I want it to type A when I press that button.
Topic: UI Frameworks SubTopic: UIKit Tags:
0
0
655
May ’22
How to use UIImage instead of UIColor
Currently, I am making custom keyboard as an extension. As I was making it, I was able to specify the background color of the keyboard button. But what I want is to insert a UIImage instead of a UIColor, but it doesn't work. Can anyone tell me? People like Claude 31 who can give me a rough idea, please do not comment and I will report you.
1
0
685
Jul ’22
Problems encountered when copying extension files from other projects
Hello. I found another completed project A during the app development test. I pasted only the extension file added from project A to project B in finder. However, there was a problem with info, so it was impossible to build. I deleted it and tried to build it, and it worked very well. However, when I rebooted my development system mac and re-run the project, there is only the extension and the app product is not selected for build. The first problem that occurred here is I don't understand why the build works if I delete info when another extension is copied to finder. And for the second problem, I don't know why only the extension appears and it is impossible to build the app when I run xcode again. I would be grateful if you could leave a guess, even if it is not an exact answer.
0
0
698
Jul ’22
'shared' is unavailable in application extensions for iOS: Use view controller based solutions where appropriate instead.
import UIKit import CoreHaptics import AVFoundation enum ShiftStatus{   case capitalized   case normal } @available(iOSApplicationExtension 13.0, *) class KeyboardViewController: UIInputViewController {       var engine: CHHapticEngine?       lazy var supportsHaptics: Bool = {     let appDelegate = UIApplication.shared.delegate as! AppDelegate     return appDelegate.supportsHaptics   }() Currently working here 'shared' is unavailable in application extensions for iOS: Use view controller based solutions where appropriate instead. A warning message pops up. I have to use it in an extension. Does anyone know a solution?
1
0
7.0k
Jul ’22
What not to do when naming the app
Hello. We will be releasing an application soon. One free app is already on sale in the store. However, the next application to be released is planned to be released as a series. I know there are restrictions on the name of the app store. It doesn't remind me of drugs, or it can't be duplicated... I would like to release a paid application by attaching NO.1 and NO.2 to the name of the application. Each application is planned to be updated and repaired, and only functions and designs are different. The reason for having different NO. is design and function Because there is a difference. It's a light topic, so I'd appreciate it if you could share what you know, even if you're not sure.
0
0
666
Jul ’22
How to index image from xcode storyboard to collectionview
Added imageview to cell. We have already indexed the label and implemented openurl. But, I don't know how to index the image the way I wrote it. Currently, no error code is entered, but the picture is not visible in the simulator. import UIKit private let reuseIdentifier = "Cell" class CollectionViewController: UICollectionViewController {   var modelData = ["A","B","B","D","E"]       let urls = ["h","h","h","h","h",]       let imagedata = [UIImage(named: "image1"), UIImage(named: "image2"), UIImage(named: "image3"), UIImage(named: "image4"), UIImage(named: "image5")]                   @IBAction func URLbutton(_ sender: UIButton) {         }           override func viewDidLoad() {     super.viewDidLoad()                     }   // MARK: UICollectionViewDataSource   override func numberOfSections(in collectionView: UICollectionView) -> Int {     return 1   }   override func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {     return modelData.count   }       override func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {     let cell = collectionView.dequeueReusableCell(withReuseIdentifier: reuseIdentifier, for: indexPath)           // Configure the cell     if let label = cell.viewWithTag(100) as? UILabel {       label.text = modelData[indexPath.row]     }     if let imageview = cell.viewWithTag(200) as? UIImageView {       imageview.image = imagedata[indexPath.row]     }                                                   return cell   }   override func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {     ??     }
3
0
949
Aug ’22
How to make return key for extension keyboard
I made a custom keyboard. However, I'm not sure how to actively create buttons according to the input type like the iPhone's default keyboard. This is the information I found. typedef enum { case 'default' case asciiCapble case numberAndPunctuation case URL case numberPad case phonePad case namePhonePad case eamilAddress case decimalPad case twitter case webSearch case asciiCapbleNumberPad }UIKeyboardType; static var alphabey: UIKeyboardType Specifies a keybovard optimized for alphabetic entry
1
0
874
Dec ’22
Ability to add numbers
I want to make something that adds numbers over and over again. If you add 50 at the beginning, it is saved in the core data, and if you add 80 again later, I want 130 to be saved in the core data right away. How do I store the stored value directly in Core Data and add another number to that data?
Replies
1
Boosts
0
Views
512
Activity
Apr ’22
How to use searchbar for collectionview?
I'm making a collection of notes app, but I don't know how to use the search bar. The search box doesn't appear, is it possible to search as a alert?
Replies
0
Boosts
0
Views
597
Activity
Apr ’22
I would like to see a project with the source code of the iPhone Siri Shortcut App.
hello. I'm trying to create a simple finance-related application that combines gathering and core data, and the default iPhone application, Shortcuts application, contains everything I need to create. However, the production period is expected to take more than one year. I 'm running out of time... Where can I find the source code?
Replies
0
Boosts
0
Views
652
Activity
Apr ’22
Building a custom keyboard
I'm trying to make a keyboard that conforms to Apple's guidelines. I need to change the key layout like an app in the App Store, but I can't find any documentation or information about it. Everyone leaves the keyboard instruction link and runs away. Can you help me? https://apps.apple.com/kr/app/slyder/id1121553033
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
1
Boosts
0
Views
620
Activity
May ’22
Is it possible to automatically go to the home screen by running the app or pressing the button?
I want to move the app to the home screen if there is no response from the user after a few seconds after launching the app.
Replies
6
Boosts
0
Views
1.1k
Activity
May ’22
Designing a custom keyboard
I am trying to make a keyboard themed app. I created a custom keyboard file through the target, but the file I created does not have keyboard keys. How can I create a keyboardView and put the image I made into the keyboardView? There are too few related materials, so I need the help of experts.
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
2
Boosts
0
Views
754
Activity
May ’22
Custom keyboard and xib coding
We are making custom keyboards. 1.I have created a keyboard project. 2.I created a custom keyboard file through the target. 3.I can add my keyboard to the system keyboard settings through the simulator. 4.When I open my keyboard in the simulator, nothing happens. 5.I have created a xib file. 6.I added a key image created by adding a media file to the custom keyboard folder and made it into a button. 7.I added it to xib, but the key doesn't show up in the simulator. 8.I'm trying to code by connecting my new button to the view, but the drag doesn't work at all. 9.I have no idea what files to create afterwards and how to code them. 10.I have created an image of a button A and I want it to show on my custum keyboard, and I want it to type A when I press that button.
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
0
Boosts
0
Views
655
Activity
May ’22
How to use UIImage instead of UIColor
Currently, I am making custom keyboard as an extension. As I was making it, I was able to specify the background color of the keyboard button. But what I want is to insert a UIImage instead of a UIColor, but it doesn't work. Can anyone tell me? People like Claude 31 who can give me a rough idea, please do not comment and I will report you.
Replies
1
Boosts
0
Views
685
Activity
Jul ’22
Problems encountered when copying extension files from other projects
Hello. I found another completed project A during the app development test. I pasted only the extension file added from project A to project B in finder. However, there was a problem with info, so it was impossible to build. I deleted it and tried to build it, and it worked very well. However, when I rebooted my development system mac and re-run the project, there is only the extension and the app product is not selected for build. The first problem that occurred here is I don't understand why the build works if I delete info when another extension is copied to finder. And for the second problem, I don't know why only the extension appears and it is impossible to build the app when I run xcode again. I would be grateful if you could leave a guess, even if it is not an exact answer.
Replies
0
Boosts
0
Views
698
Activity
Jul ’22
'shared' is unavailable in application extensions for iOS: Use view controller based solutions where appropriate instead.
import UIKit import CoreHaptics import AVFoundation enum ShiftStatus{   case capitalized   case normal } @available(iOSApplicationExtension 13.0, *) class KeyboardViewController: UIInputViewController {       var engine: CHHapticEngine?       lazy var supportsHaptics: Bool = {     let appDelegate = UIApplication.shared.delegate as! AppDelegate     return appDelegate.supportsHaptics   }() Currently working here 'shared' is unavailable in application extensions for iOS: Use view controller based solutions where appropriate instead. A warning message pops up. I have to use it in an extension. Does anyone know a solution?
Replies
1
Boosts
0
Views
7.0k
Activity
Jul ’22
Audio available in extension
Hello. I tried to port corehaptic to extension custum keyboard, but failed. So I adopted hapticfeedback as a suboptimal solution, but I haven't solved the audio yet. Do you know which chord to use for the sound effect that we usually use on the basic ios keyboard? Thank you for helping me.
Replies
0
Boosts
0
Views
1.1k
Activity
Jul ’22
What not to do when naming the app
Hello. We will be releasing an application soon. One free app is already on sale in the store. However, the next application to be released is planned to be released as a series. I know there are restrictions on the name of the app store. It doesn't remind me of drugs, or it can't be duplicated... I would like to release a paid application by attaching NO.1 and NO.2 to the name of the application. Each application is planned to be updated and repaired, and only functions and designs are different. The reason for having different NO. is design and function Because there is a difference. It's a light topic, so I'd appreciate it if you could share what you know, even if you're not sure.
Replies
0
Boosts
0
Views
666
Activity
Jul ’22
How to index image from xcode storyboard to collectionview
Added imageview to cell. We have already indexed the label and implemented openurl. But, I don't know how to index the image the way I wrote it. Currently, no error code is entered, but the picture is not visible in the simulator. import UIKit private let reuseIdentifier = "Cell" class CollectionViewController: UICollectionViewController {   var modelData = ["A","B","B","D","E"]       let urls = ["h","h","h","h","h",]       let imagedata = [UIImage(named: "image1"), UIImage(named: "image2"), UIImage(named: "image3"), UIImage(named: "image4"), UIImage(named: "image5")]                   @IBAction func URLbutton(_ sender: UIButton) {         }           override func viewDidLoad() {     super.viewDidLoad()                     }   // MARK: UICollectionViewDataSource   override func numberOfSections(in collectionView: UICollectionView) -> Int {     return 1   }   override func collectionView(_ collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {     return modelData.count   }       override func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {     let cell = collectionView.dequeueReusableCell(withReuseIdentifier: reuseIdentifier, for: indexPath)           // Configure the cell     if let label = cell.viewWithTag(100) as? UILabel {       label.text = modelData[indexPath.row]     }     if let imageview = cell.viewWithTag(200) as? UIImageView {       imageview.image = imagedata[indexPath.row]     }                                                   return cell   }   override func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {     ??     }
Replies
3
Boosts
0
Views
949
Activity
Aug ’22
What should we prepare for the apple glasses app?
Should we study C++ related to augmented reality and deal with Unity and Unreal Engine?
Replies
1
Boosts
0
Views
1.1k
Activity
Dec ’22
How to make return key for extension keyboard
I made a custom keyboard. However, I'm not sure how to actively create buttons according to the input type like the iPhone's default keyboard. This is the information I found. typedef enum { case 'default' case asciiCapble case numberAndPunctuation case URL case numberPad case phonePad case namePhonePad case eamilAddress case decimalPad case twitter case webSearch case asciiCapbleNumberPad }UIKeyboardType; static var alphabey: UIKeyboardType Specifies a keybovard optimized for alphabetic entry
Replies
1
Boosts
0
Views
874
Activity
Dec ’22