i am a psychiatrist. I got into iPad swift coding because I want to write a Medical progress note documentation app.Some thoughts I have is: to always have internet connection at my work locations (meaning I will be using a mi-fi device / 4G to connect to the cloud. The cloud will be in the form of carbonite. This way, not much info is stored locally on the iPad, as there is always internet connection. And Carbonite is supposedly HIPAA compliant (HiPAA is the privacy laws that govern Health records).I want to write an app that is split onto to iPads. The doctor has an iPad that he marks his notes and dictates parts of the note using siri. The patient also holds and ipad. The patient's iPad will ask survey like questions such as: In the last month have you thought about Hurting yourself / Wished you were not alive, etc (these are sensitive questions that has to be asked of every patient).Via the cloud, I want the patient's answers to get to the doctor's iPad, such that any screened questions can be further eva
Search results for
SwiftUI List performance
50,605 results found
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
i am using swift 2 and this is my AIP code can you help me because this isn't working:import UIKitimport iAdimport StoreKitclass ViewController4: UIViewController, ADBannerViewDelegate, SKProductsRequestDelegate, SKPaymentTransactionObserver { @IBOutlet var s3: UIButton! @IBOutlet var s6: UIButton! @IBOutlet var s13: UIButton! @IBOutlet var s22: UIButton! @IBOutlet var s30: UIButton! @IBOutlet var s45: UIButton! @IBOutlet var s60: UIButton! @IBOutlet var s100: UIButton! @IBOutlet var rf: UIButton! @IBOutlet var ise: UIButton! @IBOutlet var info: UIButton! @IBOutlet var home: UIButton! @IBOutlet var banner: ADBannerView! @IBOutlet var restore: UIButton! override func viewDidLoad() { super.viewDidLoad() s3.layer.cornerRadius = 10 s6.layer.cornerRadius = 10 s13.layer.cornerRadius = 10 s22.layer.cornerRadius = 10 s30.layer.cornerRadius = 10 s45.layer.cornerRadius = 10 s60.layer.cornerRadius = 10 s100.layer.cornerRadius = 10 rf.layer.cornerRadius = 10 ise.layer.cornerRadius = 10 info.layer.cornerRadius = 10 home.l
Thanks for confirming.I see them there (now that you pointed it out 🙂 ), but when I right-click on a contact in the Buddy List, which is how I have always done it, the options aren't there any longer. Gone also are the indicators of whether or not a buddy has the capability at all. And I have no audio/video preferences pane or menu as used to be there.But, I guess I should be thankful it hasn't been yanked entirely...
Topic:
App & System Services
SubTopic:
Core OS
Tags:
Trying to save user inputed data into a list to be called by by user at a later point. In the save command (at lines 60 & 67) in Xcode 7 beta, I'm receiving the following command: Cannot invoke 'save' with an argument list of type '(nil)' This worked in Xcode 6 and is really the only way I know how to do this, if theres a newer or better way please enlighten me!!import UIKit import CoreData class MainVC: UIViewController { let context = (UIApplication.sharedApplication().delegate as! AppDelegate).managedObjectContext var nItem : List? = nil @IBOutlet weak var entryItem: UITextField! @IBOutlet weak var entryNote: UITextField! @IBOutlet weak var entryQty: UITextField! override func viewDidLoad() { super.viewDidLoad() if nItem != nil { entryItem.text = nItem?.item entryNote.text = nItem?.note entryQty.text = nItem?.qty } } override func didReceiveMemoryWarning() { super.didReceiveMemoryWarning() / } @IBAction func cancelTapped(sender: AnyObject) { dismissVC() } @IBAction func saveT
Hi Folks,We're updating our packages and I'm trying to sign the meta packages using productsign at the command line (under Yosemite / Xcode 6.3.2). When I enter the productsign command, it always results in 'Could not find appropriate signing identity'. However, the signing identity is correct and as listed in my keychain and in Xcode. It's valid through 2020.The command I'm using is:productsign --sign Developer ID Installer: TOLIS Group, Inc. ./BRU PE.mpkg ./BRU PE.mpkg.signedI've also tried it with the certificate serial number in the ID with the same results.Any ideas about tracking this down?
Topic:
Code Signing
SubTopic:
Certificates, Identifiers & Profiles
Tags:
Signing Certificates
Provisioning Profiles
I thought about it, and I knew this might work. I just wanted to get a sense of other people's experience before going ahead and doing a major reorg. I am okay with few minor glitches once in a few days, and would like to know whether beta 1 is usable ? Is there a page listing major bugs and reasons for crash down? Also would Apple maintain the two week schedule for releasing new betas, like last year? Thanks..
Topic:
App & System Services
SubTopic:
Core OS
Tags:
I tried this and it doesn't work , output: unrecognized selector sent to instance 0x7f9773609ee0It seems compare not the array's contents but an address...@interface ListOfProductsTableViewController ()@property NSMutableArray *products;@end@implementation ListOfProductsTableViewController// When user taps A-z button sort list of products ascending- (IBAction)Ordena:(UIBarButtonItem *)sender { [self.produtos sortUsingSelector:@selector(caseInsensitiveCompare:)]; [self.tableView reloadData];
Topic:
Developer Tools & Services
SubTopic:
Xcode
Tags:
I have been trying to use Application Loader for a new App but I'm getting a pop-up with 3 different issues listed...Issue 1: Application Loader currently not available.Issue 2: We are having trouble connecting to the App Store. Please try again later.Issue 3: No suitable application records were found. Verify your bundle identifier 'com.edpowell.wordfactory' is correct.So, which is it? Is the Bundle ID Bad? Or is it saying that because it can't connect to the App Store? Or is the Application Loader not available?This doesn't make any sense. Which of the 3 is the issue?I understand that this is a standard message but a standard message for which of the three?It seems like every time I get some sort of message from Apple I have to search the internet to get it's meaning!
Location services authorization must be obtained before any CoreLocation service is used (which includes iBeacon region monitoring). Without this authorization your app will not receive any location services from the system.If you are expecting your app to be woken up, that means you expect to be using the location services while in the background. That will require an always authorization.Best time to request this authorization is at the point where you actually plan to use location services to perform a task. As requesting authorization may display an alert to the user, if it is not clear to the user that your app is using location services for a useful purpose, the user may deny your request.
Topic:
App & System Services
SubTopic:
Maps & Location
Tags:
Option 3 is possible, and would be the one I can recommend.Through Bluetooth background modes, your app can connect to and listen for a notification from a Bluetooth 4 device (which can be triggered by a button press).When this notification arrives, your app will be activated in the background for a short time for you to react as necessary.Although, this alloted time will be too short to reliably connect to a server at all times, so you will need to implement a viable way to contact your servers reliably at all times.It is important to remember that all background modes require App Review approval before your app can get to the App Store.You can find more info through these links:Core Bluetooth Background Processing for iOS Apps, for interacting with Bluetooth 4 devices: https://developer.apple.com/library/ios/documentation/NetworkingInternetWeb/Conceptual/CoreBluetooth_concepts/CoreBluetoothBackgroundProcessingForIOSApps/PerformingTasksWhileYourAppIsInTheBackground.html#//apple_ref/doc/uid/TP40013257-CH7-SW1
Topic:
App & System Services
SubTopic:
Maps & Location
Tags:
Option 3 is possible, and would be the one I can recommend.Through Bluetooth background modes, your app can connect to and listen for a notification from a Bluetooth 4 device (which can be triggered by a button press).When this notification arrives, your app will be activated in the background for a short time for you to react as necessary.Although, this alloted time will be too short to reliably connect to a server at all times, so you will need to implement a viable way to contact your servers reliably at all times.It is important to remember that all background modes require App Review approval before your app can get to the App Store.You can find more info through these links:Core Bluetooth Background Processing for iOS Apps, for interacting with Bluetooth 4 devices: https://developer.apple.com/library/ios/documentation/NetworkingInternetWeb/Conceptual/CoreBluetooth_concepts/CoreBluetoothBackgroundProcessingForIOSApps/PerformingTasksWhileYourAppIsInTheBackground.html#//apple_ref/doc/uid/TP40013257-CH7-SW1
Topic:
App & System Services
SubTopic:
Networking
Tags:
I had the same issue. I had to reset my list of devices for the new year or cycle or whatever you want to call it. During the reset you can choose which devices you want to remove. You can just roll the whole list over if you want. Once the rest is done, you will then be able to hit the + and add a new device assuming you haven't reached the max limits.
Topic:
App & System Services
SubTopic:
Core OS
Tags:
Run system profiler and see if it shows on the USB chain there.Still no joy, reset the USB:Step 1Click the Apple logo and click Restart to reboot your Mac. A reboot is a simple way of solving common hardware problems.Step 2Unplug connected USB devices if the ports are still not working. Restart your computer again, and then reconnect the USB devices.Related Reading: How to Reset Port Location on the MacBook ProStep 3Click the Apple menu, select About This Mac, and then click More Info. Click USB to view a list of the USB devices connected to your Mac.Step 4Shut down the computer if you don't see one of your USB devices in the device list. Turn the computer back on. Hold the Command-Option-P-R keys together before the gray screen appears until you hear the startup sound for the second time. Release the keys.Step 5Press the Command-Option-Esc buttons to shut down applications that aren't responding.Step 6Click the Apple menu and click Sleep. Wait a few seconds, and then press any key to wake t
Topic:
App & System Services
SubTopic:
Core OS
Tags:
Reset ports yet?Step 1Click the Apple logo and click Restart to reboot your Mac laptop. A reboot is a simple way of solving common hardware problems.Step 2Unplug connected USB devices if the ports are still not working. Restart your computer again, and then reconnect the USB devices.Related Reading: How to Reset Port Location on the MacBook ProStep 3Click the Apple menu, select About This Mac, and then click More Info. Click USB to view a list of the USB devices connected to your Mac.Step 4Shut down the computer if you don't see one of your USB devices in the device list. Turn the computer back on. Hold the Command-Option-P-R keys together before the gray screen appears until you hear the startup sound for the second time. Release the keys.Step 5Press the Command-Option-Esc buttons to shut down applications that aren't responding.Step 6Click the Apple menu and click Sleep. Wait a few seconds, and then press any key to wake the computer.Step 7Restart your computer. Click the Apple menu and cl
Topic:
App & System Services
SubTopic:
Core OS
Tags:
If you read the documentation for NSTimer, you will find methods such as +scheduledTimerWithTimeInterval:target:selector:userInfo:repeats: which will set up a timer to call a method of your choice at an interval you specify. Each time your method is called you can perform your calculations and update the UI.
Topic:
Developer Tools & Services
SubTopic:
Xcode
Tags: