- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我想在我的项目中使用 SignalR,我对在 swift 中使用 signalR 一无所知,我正在安装 SwiftR pod,但我不知道如何调用 webService 方法,将参数传递给 webService 并获取 JSON 结果来自 webService,有我的简单代码用于连接到 webService 并开始连接,但一切都错了,连接不成功。这是网址:✿ http://s.ne ***y.ir/这是应该调用的方法: Authentication_Code_Request(string Mobile, byte Method)方法是 10 或 20我应该得到这样的回应:信息方法代码发件人
这是我的代码:
var autHub: Hub!
var connection: SignalR!
//var name: String!
@IBAction func sendRequest(_ sender: Any) {
connection = SignalR("http://s.ne***y.ir/")
connection.signalRVersion = .v2_2_0
print(connection.baseUrl)
var methodString: String?
methodString = "10"
chatHub = Hub("autHub")
chatHub.on("Authentication_Code_Request") { [weak self] args in
if let mobile = args?[0] as? String, let method = args?[1] as? String, let mobiletext = self?.chatTextView.text, let mehodText = methodString {
print(method)
print(mobiletext)
print(mehodText)
print(mobile)
}
}
connection.addHub(chatHub)
connection.starting = { [weak self] in
self?.button.tintColor = #colorLiteral(red: 0.2745098174, green: 0.4862745106, blue: 0.1411764771, alpha: 1)
}
}
最佳答案
这是 SignalR objective C,使用 Bridging-Header 在 Swift 中使用
首先,安装Pod
pod 'SignalR-ObjC'
============================================= ========
添加 objective-c 类名称 SignalRClassViewController.h 和 SignalRClassViewController.m
============================================= ======== SignalRClassViewController.h
#import <UIKit/UIKit.h>
#import <SignalR_ObjC/SRClientTransportInterface.h>
#import <SignalR_ObjC/SRHubProxy.h>
#import <SignalR_ObjC/SRHubConnection.h>
#import <SignalR_ObjC/SRConnection.h>
#import <SignalR_ObjC/SRHubConnectionInterface.h>
@interface SignalRClassViewController : UIViewController<SRConnectionDelegate, SRHubConnectionInterface, SRClientTransportInterface>
// This method is used to have Single Instance. In the whole app, Life cycle makes sure you are using only one Instance of SignalR Class because of it one to one connection so we need listeners which continue to listen each time.
+(SignalRClassViewController *)getInstance;
-(void)SignalRConnection;
-(void)SignalRStopCoonection;
// Write your Own Methods
-(void)assignUser;
-(void)GetWebActiveClients;
@end
============================================= ========SignalRClassViewController.m
#import "SignalRClassViewController.h"
@interface SignalRClassViewController ()
{
NSMutableArray *array ;
}
@end
static SRHubProxy *chat = nil;
static SRHubConnection *hubConnection = nil;
@implementation SignalRClassViewController
static SignalRClassViewController *instance = nil;
+(SignalRClassViewController *)getInstance
{
@synchronized(self)
{
if(instance==nil)
{
instance= [SignalRClassViewController new];
[instance iniHUB];
}else{
[instance iniHUB];
}
}
return instance;
}
-(void) iniHUB{
if(hubConnection == nil){
NSDictionary *parameters;
parameters = @{ @"UserId": @"121",
@"UserToken": @"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJNeUhhc2giOiIyYzg5ODVmZC1jZDkyLTRjNzItOWNmYi01MWIyMWY1Y2FjZGQiLCIyYzg5ODVmZC1jZDkyLTRjNzItOWNmYi01MWIyMWY1Y2FjZGQiOjEyMX0.bDnuuroAmXvh-kifWN5jpJaSJVnMipuMD4QXon2lB-w"
};
hubConnection = [SRHubConnection connectionWithURLString:@"http://web.abc.......xyz.it" queryString:parameters];
// parameters if you want to authenticate connection
else use hubConnection = [SRHubConnection connectionWithURLString:@"http://web.abc.......xyz.it"];
[hubConnection setDelegate:self];
chat = [hubConnection createHubProxy:@"yourHubName"];
// Add event for which you want to active your listener when server trigger it
[chat on:@"ResponseAssignUserDevice" perform:self selector:@selector(responseAssignUserDevice:)];
[chat on:@"GetWebActiveClients" perform:self selector:@selector(ResponseGetWebActiveClients:)];
[hubConnection start];
// Start Connection
}
}
- (void)viewDidLoad {
[super viewDidLoad];
}
#pragma mark SRConnection Delegate
- (void)SRConnectionDidClose:(id<SRConnectionInterface>)connection{
NSLog(@"Connection close");
[self removeChatObserver];
[self iniHUB];
}
-(void) removeChatObserver{
if(chat!=nil){
chat=nil;
hubConnection=nil;
}
}
- (void)SRConnectionDidSlow:(id<SRConnectionInterface>)connection{
NSLog(@"Reconnect Slow");
}
- (void)SRConnectionWillReconnect:(id<SRConnectionInterface>)connection{
NSLog(@"Reconnected");
}
-(void)SignalRStopCoonection{
// Start the connection
if(hubConnection!= nil){
[hubConnection stop];
[self removeChatObserver];
}
}
-(void)SRConnectionDidOpen:(SRHubConnection*)connection{
NSLog(@"SR Conection open");
// When Connection is open call AssignUser
[self assignUser];
}
-(void)assignUser{
NSDictionary *parameters;
parameters = @{ @"UserId": @"121",
@"DeviceType": @"Mobile",
@"WebToken" : @"NA",
@"DeviceOS" : @"iPhone",
@"BrowserName" : @"NA"
};
array = [[NSMutableArray alloc]init];
[array addObject:parameters];
[chat invoke:@"AssignUserDevice" withArgs:array];
// This will invoke AssignUserDevice which is on server and you have added it selector when server will reponse on this name responseAssignUserDevice
}
- (void)responseAssignUserDevice:(NSString *)message {
// Print the message when it comes in
NSLog(@"SR msg %@",message);
}
-(void)GetWebActiveClients{
array = [[NSMutableArray alloc]init];
[array addObject:[NSString stringWithFormat:@"121"]];
[chat invoke:@"GetWebActiveClients" withArgs:array];
}
- (void)ResponseGetWebActiveClients:(NSString *)message
{
// Print the message when it comes in
NSLog(@"SR msg responseGetArticleByDate %@",message);
}
@end
============================================= ========
ViewController.Swift
import UIKit
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
}
@IBAction func assignUser(_ sender: Any) {
SignalRClassViewController.getInstance().assignUser()
}
@IBAction func GetWebActiveClients(_ sender: Any) {
SignalRClassViewController.getInstance().getWebActiveClients()
}
}
请查看code here
关于ios - 在 Swift 中调用 SignalR 方法 (SwiftR),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41759732/
我想了解 Ruby 方法 methods() 是如何工作的。 我尝试使用“ruby 方法”在 Google 上搜索,但这不是我需要的。 我也看过 ruby-doc.org,但我没有找到这种方法。
Test 方法 对指定的字符串执行一个正则表达式搜索,并返回一个 Boolean 值指示是否找到匹配的模式。 object.Test(string) 参数 object 必选项。总是一个
Replace 方法 替换在正则表达式查找中找到的文本。 object.Replace(string1, string2) 参数 object 必选项。总是一个 RegExp 对象的名称。
Raise 方法 生成运行时错误 object.Raise(number, source, description, helpfile, helpcontext) 参数 object 应为
Execute 方法 对指定的字符串执行正则表达式搜索。 object.Execute(string) 参数 object 必选项。总是一个 RegExp 对象的名称。 string
Clear 方法 清除 Err 对象的所有属性设置。 object.Clear object 应为 Err 对象的名称。 说明 在错误处理后,使用 Clear 显式地清除 Err 对象。此
CopyFile 方法 将一个或多个文件从某位置复制到另一位置。 object.CopyFile source, destination[, overwrite] 参数 object 必选
Copy 方法 将指定的文件或文件夹从某位置复制到另一位置。 object.Copy destination[, overwrite] 参数 object 必选项。应为 File 或 F
Close 方法 关闭打开的 TextStream 文件。 object.Close object 应为 TextStream 对象的名称。 说明 下面例子举例说明如何使用 Close 方
BuildPath 方法 向现有路径后添加名称。 object.BuildPath(path, name) 参数 object 必选项。应为 FileSystemObject 对象的名称
GetFolder 方法 返回与指定的路径中某文件夹相应的 Folder 对象。 object.GetFolder(folderspec) 参数 object 必选项。应为 FileSy
GetFileName 方法 返回指定路径(不是指定驱动器路径部分)的最后一个文件或文件夹。 object.GetFileName(pathspec) 参数 object 必选项。应为
GetFile 方法 返回与指定路径中某文件相应的 File 对象。 object.GetFile(filespec) 参数 object 必选项。应为 FileSystemObject
GetExtensionName 方法 返回字符串,该字符串包含路径最后一个组成部分的扩展名。 object.GetExtensionName(path) 参数 object 必选项。应
GetDriveName 方法 返回包含指定路径中驱动器名的字符串。 object.GetDriveName(path) 参数 object 必选项。应为 FileSystemObjec
GetDrive 方法 返回与指定的路径中驱动器相对应的 Drive 对象。 object.GetDrive drivespec 参数 object 必选项。应为 FileSystemO
GetBaseName 方法 返回字符串,其中包含文件的基本名 (不带扩展名), 或者提供的路径说明中的文件夹。 object.GetBaseName(path) 参数 object 必
GetAbsolutePathName 方法 从提供的指定路径中返回完整且含义明确的路径。 object.GetAbsolutePathName(pathspec) 参数 object
FolderExists 方法 如果指定的文件夹存在,则返回 True;否则返回 False。 object.FolderExists(folderspec) 参数 object 必选项
FileExists 方法 如果指定的文件存在返回 True;否则返回 False。 object.FileExists(filespec) 参数 object 必选项。应为 FileS
我是一名优秀的程序员,十分优秀!